Make the orders match the names, as otherwise people get confused (bug #49381 for example)

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@951453 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2010-06-04 15:41:32 +00:00
parent 74c40ef943
commit 3352f76127
2 changed files with 2 additions and 2 deletions

View File

@ -1365,8 +1365,8 @@ public final class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet {
* Creates a split (freezepane). Any existing freezepane or split pane is overwritten.
* @param colSplit Horizonatal position of split.
* @param rowSplit Vertical position of split.
* @param topRow Top row visible in bottom pane
* @param leftmostColumn Left column visible in right pane.
* @param topRow Top row visible in bottom pane
*/
public void createFreezePane(int colSplit, int rowSplit, int leftmostColumn, int topRow) {
validateColumn(colSplit);

View File

@ -535,8 +535,8 @@ public interface Sheet extends Iterable<Row> {
* Creates a split (freezepane). Any existing freezepane or split pane is overwritten.
* @param colSplit Horizonatal position of split.
* @param rowSplit Vertical position of split.
* @param topRow Top row visible in bottom pane
* @param leftmostColumn Left column visible in right pane.
* @param topRow Top row visible in bottom pane
*/
void createFreezePane(int colSplit, int rowSplit, int leftmostColumn, int topRow);