You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ni...@apache.org on 2015/07/14 22:37:28 UTC

svn commit: r1691076 - /poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFBorderFormatting.java

Author: nick
Date: Tue Jul 14 20:37:27 2015
New Revision: 1691076

URL: http://svn.apache.org/r1691076
Log:
Fix inconsistent whitespace/indents

Modified:
    poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFBorderFormatting.java

Modified: poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFBorderFormatting.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFBorderFormatting.java?rev=1691076&r1=1691075&r2=1691076&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFBorderFormatting.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFBorderFormatting.java Tue Jul 14 20:37:27 2015
@@ -27,157 +27,157 @@ import org.apache.poi.hssf.util.HSSFColo
  */
 public final class HSSFBorderFormatting implements org.apache.poi.ss.usermodel.BorderFormatting {
     private final HSSFWorkbook workbook;
-	private final CFRuleBase cfRuleRecord;
-	private final BorderFormatting borderFormatting;
-	
-	protected HSSFBorderFormatting(CFRuleBase cfRuleRecord, HSSFWorkbook workbook) {
-	    this.workbook = workbook;
-		this.cfRuleRecord = cfRuleRecord;
-		this.borderFormatting = cfRuleRecord.getBorderFormatting();
-	}
-
-	protected BorderFormatting getBorderFormattingBlock() {
-		return borderFormatting;
-	}
-
-	public short getBorderBottom() {
-		return (short)borderFormatting.getBorderBottom();
-	}
-
-	public short getBorderDiagonal() {
-		return (short)borderFormatting.getBorderDiagonal();
-	}
-
-	public short getBorderLeft() {
-		return (short)borderFormatting.getBorderLeft();
-	}
-
-	public short getBorderRight() {
-		return (short)borderFormatting.getBorderRight();
-	}
-
-	public short getBorderTop() {
-		return (short)borderFormatting.getBorderTop();
-	}
-
-	public short getBottomBorderColor() {
-		return (short)borderFormatting.getBottomBorderColor();
-	}
+    private final CFRuleBase cfRuleRecord;
+    private final BorderFormatting borderFormatting;
+
+    protected HSSFBorderFormatting(CFRuleBase cfRuleRecord, HSSFWorkbook workbook) {
+        this.workbook = workbook;
+        this.cfRuleRecord = cfRuleRecord;
+        this.borderFormatting = cfRuleRecord.getBorderFormatting();
+    }
+
+    protected BorderFormatting getBorderFormattingBlock() {
+        return borderFormatting;
+    }
+
+    public short getBorderBottom() {
+        return (short)borderFormatting.getBorderBottom();
+    }
+
+    public short getBorderDiagonal() {
+        return (short)borderFormatting.getBorderDiagonal();
+    }
+
+    public short getBorderLeft() {
+        return (short)borderFormatting.getBorderLeft();
+    }
+
+    public short getBorderRight() {
+        return (short)borderFormatting.getBorderRight();
+    }
+
+    public short getBorderTop() {
+        return (short)borderFormatting.getBorderTop();
+    }
+
+    public short getBottomBorderColor() {
+        return (short)borderFormatting.getBottomBorderColor();
+    }
     public HSSFColor getBottomBorderColorColor() {
         return workbook.getCustomPalette().getColor(
                 borderFormatting.getBottomBorderColor()
         );
     }
 
-	public short getDiagonalBorderColor() {
-		return (short)borderFormatting.getDiagonalBorderColor();
-	}
-
-	public short getLeftBorderColor() {
-		return (short)borderFormatting.getLeftBorderColor();
-	}
-
-	public short getRightBorderColor() {
-		return (short)borderFormatting.getRightBorderColor();
-	}
-
-	public short getTopBorderColor() {
-		return (short)borderFormatting.getTopBorderColor();
-	}
-
-	public boolean isBackwardDiagonalOn() {
-		return borderFormatting.isBackwardDiagonalOn();
-	}
-
-	public boolean isForwardDiagonalOn() {
-		return borderFormatting.isForwardDiagonalOn();
-	}
-
-	public void setBackwardDiagonalOn(boolean on) {
-		borderFormatting.setBackwardDiagonalOn(on);
-		if( on ) {
-			cfRuleRecord.setTopLeftBottomRightBorderModified(on);
-		}
-	}
-
-	public void setBorderBottom(short border) {
-		borderFormatting.setBorderBottom(border);
-		if( border != 0) {
-			cfRuleRecord.setBottomBorderModified(true);
-		} else {
-			cfRuleRecord.setBottomBorderModified(false);
-      }
-	}
-
-	public void setBorderDiagonal(short border) {
-		borderFormatting.setBorderDiagonal(border);
-		if( border != 0) {
-			cfRuleRecord.setBottomLeftTopRightBorderModified(true);
-			cfRuleRecord.setTopLeftBottomRightBorderModified(true);
-		}
-	}
-
-	public void setBorderLeft(short border) {
-		borderFormatting.setBorderLeft(border);
-		if( border != 0) {
-			cfRuleRecord.setLeftBorderModified(true);
-		}
-	}
-
-	public void setBorderRight(short border) {
-		borderFormatting.setBorderRight(border);
-		if( border != 0) {
-			cfRuleRecord.setRightBorderModified(true);
-		}
-	}
-
-	public void setBorderTop(short border) {
-		borderFormatting.setBorderTop(border);
-		if( border != 0) {
-			cfRuleRecord.setTopBorderModified(true);
-		}
-	}
-
-	public void setBottomBorderColor(short color) {
-		borderFormatting.setBottomBorderColor(color);
-		if( color != 0) {
-			cfRuleRecord.setBottomBorderModified(true);
-		}
-	}
-
-	public void setDiagonalBorderColor(short color) {
-		borderFormatting.setDiagonalBorderColor(color);
-		if( color != 0) {
-			cfRuleRecord.setBottomLeftTopRightBorderModified(true);
-			cfRuleRecord.setTopLeftBottomRightBorderModified(true);
-		}
-	}
-
-	public void setForwardDiagonalOn(boolean on) {
-		borderFormatting.setForwardDiagonalOn(on);
-		if( on ) {
-			cfRuleRecord.setBottomLeftTopRightBorderModified(on);
-		}
-	}
-
-	public void setLeftBorderColor(short color) {
-		borderFormatting.setLeftBorderColor(color);
-		if( color != 0) {
-			cfRuleRecord.setLeftBorderModified(true);
-		}
-	}
-
-	public void setRightBorderColor(short color) {
-		borderFormatting.setRightBorderColor(color);
-		if( color != 0) {
-			cfRuleRecord.setRightBorderModified(true);
-		}
-	}
-
-	public void setTopBorderColor(short color) {
-		borderFormatting.setTopBorderColor(color);
-		if( color != 0) {
-			cfRuleRecord.setTopBorderModified(true);
-		}
-	}
+    public short getDiagonalBorderColor() {
+        return (short)borderFormatting.getDiagonalBorderColor();
+    }
+
+    public short getLeftBorderColor() {
+        return (short)borderFormatting.getLeftBorderColor();
+    }
+
+    public short getRightBorderColor() {
+        return (short)borderFormatting.getRightBorderColor();
+    }
+
+    public short getTopBorderColor() {
+        return (short)borderFormatting.getTopBorderColor();
+    }
+
+    public boolean isBackwardDiagonalOn() {
+        return borderFormatting.isBackwardDiagonalOn();
+    }
+
+    public boolean isForwardDiagonalOn() {
+        return borderFormatting.isForwardDiagonalOn();
+    }
+
+    public void setBackwardDiagonalOn(boolean on) {
+        borderFormatting.setBackwardDiagonalOn(on);
+        if (on ) {
+            cfRuleRecord.setTopLeftBottomRightBorderModified(on);
+        }
+    }
+
+    public void setBorderBottom(short border) {
+        borderFormatting.setBorderBottom(border);
+        if (border != 0) {
+            cfRuleRecord.setBottomBorderModified(true);
+        } else {
+            cfRuleRecord.setBottomBorderModified(false);
+        }
+    }
+
+    public void setBorderDiagonal(short border) {
+        borderFormatting.setBorderDiagonal(border);
+        if (border != 0) {
+            cfRuleRecord.setBottomLeftTopRightBorderModified(true);
+            cfRuleRecord.setTopLeftBottomRightBorderModified(true);
+        }
+    }
+
+    public void setBorderLeft(short border) {
+        borderFormatting.setBorderLeft(border);
+        if (border != 0) {
+            cfRuleRecord.setLeftBorderModified(true);
+        }
+    }
+
+    public void setBorderRight(short border) {
+        borderFormatting.setBorderRight(border);
+        if (border != 0) {
+            cfRuleRecord.setRightBorderModified(true);
+        }
+    }
+
+    public void setBorderTop(short border) {
+        borderFormatting.setBorderTop(border);
+        if (border != 0) {
+            cfRuleRecord.setTopBorderModified(true);
+        }
+    }
+
+    public void setBottomBorderColor(short color) {
+        borderFormatting.setBottomBorderColor(color);
+        if (color != 0) {
+            cfRuleRecord.setBottomBorderModified(true);
+        }
+    }
+
+    public void setDiagonalBorderColor(short color) {
+        borderFormatting.setDiagonalBorderColor(color);
+        if (color != 0) {
+            cfRuleRecord.setBottomLeftTopRightBorderModified(true);
+            cfRuleRecord.setTopLeftBottomRightBorderModified(true);
+        }
+    }
+
+    public void setForwardDiagonalOn(boolean on) {
+        borderFormatting.setForwardDiagonalOn(on);
+        if (on ) {
+            cfRuleRecord.setBottomLeftTopRightBorderModified(on);
+        }
+    }
+
+    public void setLeftBorderColor(short color) {
+        borderFormatting.setLeftBorderColor(color);
+        if (color != 0) {
+            cfRuleRecord.setLeftBorderModified(true);
+        }
+    }
+
+    public void setRightBorderColor(short color) {
+        borderFormatting.setRightBorderColor(color);
+        if (color != 0) {
+            cfRuleRecord.setRightBorderModified(true);
+        }
+    }
+
+    public void setTopBorderColor(short color) {
+        borderFormatting.setTopBorderColor(color);
+        if (color != 0) {
+            cfRuleRecord.setTopBorderModified(true);
+        }
+    }
 }



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