*
* @return int
*/
- public int getMaxLineLength() {
- return maxLineLength;
- }
+// public int getMaxLineLength() {
+// return maxLineLength;
+// }
- public int getTabSize() {
- return tabSize;
- }
+// public int getTabSize() {
+// return tabSize;
+// }
- public boolean isAddingNewLineBeforeOpeningBrace() {
- return newLineBeforeOpeningBraceMode;
- }
+// public boolean isAddingNewLineBeforeOpeningBrace() {
+// return newLineBeforeOpeningBraceMode;
+// }
- public boolean isAddingNewLineInControlStatement() {
- return newlineInControlStatementMode;
- }
+// public boolean isAddingNewLineInControlStatement() {
+// return newlineInControlStatementMode;
+// }
- public boolean isAddingNewLineInEmptyBlock() {
- return newLineInEmptyBlockMode;
- }
+// public boolean isAddingNewLineInEmptyBlock() {
+// return newLineInEmptyBlockMode;
+// }
- public boolean isClearingAllBlankLines() {
- return clearAllBlankLinesMode;
- }
+// public boolean isClearingAllBlankLines() {
+// return clearAllBlankLinesMode;
+// }
- public boolean isCompactingAssignment() {
- return compactAssignmentMode;
- }
+// public boolean isCompactingAssignment() {
+// return compactAssignmentMode;
+// }
- public boolean isCompactingDereferencing() {
- return compactDereferencingMode;
- }
+// public boolean isCompactingDereferencing() {
+// return compactDereferencingMode;
+// }
// public boolean isCompactingElseIf() {
// return compactElseIfMode;
// }
- public boolean isUsingTabForIndenting() {
- return indentWithTab;
- }
+// public boolean isUsingTabForIndenting() {
+// return indentWithTab;
+// }
public void setLineSeparator(String lineSeparator) {
lineSeparatorSequence = lineSeparator.toCharArray();
/**
* @deprecated - should use a Map when creating the options.
*/
- public void setMaxLineLength(int maxLineLength) {
- this.maxLineLength = maxLineLength;
- }
+// public void setMaxLineLength(int maxLineLength) {
+// this.maxLineLength = maxLineLength;
+// }
/**
* @deprecated - should use a Map when creating the options.
*/
/**
* SplitLine constructor comment.
*/
- public SplitLine(int[] operators, String[] substrings) {
- this(operators, substrings, null);
- }
+// public SplitLine(int[] operators, String[] substrings) {
+// this(operators, substrings, null);
+// }
/**
* SplitLine constructor comment.
*/
- public SplitLine(int[] operators, String[] substrings, int[] startIndexes) {
- super();
- this.operators = operators;
- this.substrings = substrings;
- this.startSubstringsIndexes = startIndexes;
- }
+// public SplitLine(int[] operators, String[] substrings, int[] startIndexes) {
+// super();
+// this.operators = operators;
+// this.substrings = substrings;
+// this.startSubstringsIndexes = startIndexes;
+// }
/**
* Prints a nice representation of the receiver