]> source.dussan.org Git - poi.git/commitdiff
Make the orders match the names, as otherwise people get confused (bug #49381 for...
authorNick Burch <nick@apache.org>
Fri, 4 Jun 2010 15:41:32 +0000 (15:41 +0000)
committerNick Burch <nick@apache.org>
Fri, 4 Jun 2010 15:41:32 +0000 (15:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@951453 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
src/java/org/apache/poi/ss/usermodel/Sheet.java

index cd667d3b478654faa3958b72bf881a8173def311..0d584fda817c7e7a3ee57ee57afbd19ad2dd4930 100644 (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);
index 9bef5269dfa45b9e1793d4b2084747eb2769de41..bad9c5c7191781cb3ead2aa3e4cf55fb3cf7a1c2 100644 (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);