You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by on...@apache.org on 2016/06/10 01:57:14 UTC

svn commit: r1747622 [1/2] - in /poi/branches/xssf_structured_references/src/java/org/apache/poi: hssf/model/HSSFFormulaParser.java ss/formula/FormulaParser.java

Author: onealj
Date: Fri Jun 10 01:57:13 2016
New Revision: 1747622

URL: http://svn.apache.org/viewvc?rev=1747622&view=rev
Log:
whitespace (tabs to spaces)

Modified:
    poi/branches/xssf_structured_references/src/java/org/apache/poi/hssf/model/HSSFFormulaParser.java
    poi/branches/xssf_structured_references/src/java/org/apache/poi/ss/formula/FormulaParser.java

Modified: poi/branches/xssf_structured_references/src/java/org/apache/poi/hssf/model/HSSFFormulaParser.java
URL: http://svn.apache.org/viewvc/poi/branches/xssf_structured_references/src/java/org/apache/poi/hssf/model/HSSFFormulaParser.java?rev=1747622&r1=1747621&r2=1747622&view=diff
==============================================================================
--- poi/branches/xssf_structured_references/src/java/org/apache/poi/hssf/model/HSSFFormulaParser.java (original)
+++ poi/branches/xssf_structured_references/src/java/org/apache/poi/hssf/model/HSSFFormulaParser.java Fri Jun 10 01:57:13 2016
@@ -31,53 +31,53 @@ import org.apache.poi.ss.formula.Formula
  */
 public final class HSSFFormulaParser {
 
-	private static FormulaParsingWorkbook createParsingWorkbook(HSSFWorkbook book) {
-		return HSSFEvaluationWorkbook.create(book);
-	}
-
-	private HSSFFormulaParser() {
-		// no instances of this class
-	}
-
-	/**
-	 * Convenience method for parsing cell formulas. see {@link #parse(String, HSSFWorkbook, int, int)}
-	 */
-	public static Ptg[] parse(String formula, HSSFWorkbook workbook) throws FormulaParseException {
-		return parse(formula, workbook, FormulaType.CELL);
-	}
-
-	/**
-	 * @param formulaType a constant from {@link FormulaType}
-	 * @return the parsed formula tokens
+    private static FormulaParsingWorkbook createParsingWorkbook(HSSFWorkbook book) {
+        return HSSFEvaluationWorkbook.create(book);
+    }
+
+    private HSSFFormulaParser() {
+        // no instances of this class
+    }
+
+    /**
+     * Convenience method for parsing cell formulas. see {@link #parse(String, HSSFWorkbook, int, int)}
+     */
+    public static Ptg[] parse(String formula, HSSFWorkbook workbook) throws FormulaParseException {
+        return parse(formula, workbook, FormulaType.CELL);
+    }
+
+    /**
+     * @param formulaType a constant from {@link FormulaType}
+     * @return the parsed formula tokens
      * @throws FormulaParseException if the formula has incorrect syntax or is otherwise invalid
-	 */
-	public static Ptg[] parse(String formula, HSSFWorkbook workbook, int formulaType) throws FormulaParseException {
-		return parse(formula, workbook, formulaType, -1);
-	}
-
-	/**
-	 * @param formula     the formula to parse
-	 * @param workbook    the parent workbook
-	 * @param formulaType a constant from {@link FormulaType}
-	 * @param sheetIndex  the 0-based index of the sheet this formula belongs to.
-	 * The sheet index is required to resolve sheet-level names. <code>-1</code> means that
-	 * the scope of the name will be ignored and  the parser will match named ranges only by name
-	 *
-	 * @return the parsed formula tokens
+     */
+    public static Ptg[] parse(String formula, HSSFWorkbook workbook, int formulaType) throws FormulaParseException {
+        return parse(formula, workbook, formulaType, -1);
+    }
+
+    /**
+     * @param formula     the formula to parse
+     * @param workbook    the parent workbook
+     * @param formulaType a constant from {@link FormulaType}
+     * @param sheetIndex  the 0-based index of the sheet this formula belongs to.
+     * The sheet index is required to resolve sheet-level names. <code>-1</code> means that
+     * the scope of the name will be ignored and  the parser will match named ranges only by name
+     *
+     * @return the parsed formula tokens
      * @throws FormulaParseException if the formula has incorrect syntax or is otherwise invalid
-	 */
-	public static Ptg[] parse(String formula, HSSFWorkbook workbook, int formulaType, int sheetIndex) throws FormulaParseException {
-		return FormulaParser.parse(formula, createParsingWorkbook(workbook), formulaType, sheetIndex, -1);
-	}
-
-	/**
-	 * Static method to convert an array of {@link Ptg}s in RPN order
-	 * to a human readable string format in infix mode.
-	 * @param book  used for defined names and 3D references
-	 * @param ptgs  must not be <code>null</code>
-	 * @return a human readable String
-	 */
-	public static String toFormulaString(HSSFWorkbook book, Ptg[] ptgs) {
-		return FormulaRenderer.toFormulaString(HSSFEvaluationWorkbook.create(book), ptgs);
-	}
+     */
+    public static Ptg[] parse(String formula, HSSFWorkbook workbook, int formulaType, int sheetIndex) throws FormulaParseException {
+        return FormulaParser.parse(formula, createParsingWorkbook(workbook), formulaType, sheetIndex, -1);
+    }
+
+    /**
+     * Static method to convert an array of {@link Ptg}s in RPN order
+     * to a human readable string format in infix mode.
+     * @param book  used for defined names and 3D references
+     * @param ptgs  must not be <code>null</code>
+     * @return a human readable String
+     */
+    public static String toFormulaString(HSSFWorkbook book, Ptg[] ptgs) {
+        return FormulaRenderer.toFormulaString(HSSFEvaluationWorkbook.create(book), ptgs);
+    }
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org