[FOray-commit] SF.net SVN: foray: [7914] trunk/foray/foray-pretty/src/java/org/foray/ pretty
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-09-05 22:55:34
|
Revision: 7914
http://svn.sourceforge.net/foray/?rev=7914&view=rev
Author: victormote
Date: 2006-09-05 15:55:26 -0700 (Tue, 05 Sep 2006)
Log Message:
-----------
Conform to standard class-ordering scheme, as reported by checkstyle.
Modified Paths:
--------------
trunk/foray/foray-pretty/src/java/org/foray/pretty/FOrayXDiff.java
trunk/foray/foray-pretty/src/java/org/foray/pretty/dtd/DTDElement.java
trunk/foray/foray-pretty/src/java/org/foray/pretty/dtd/ElementStack.java
Modified: trunk/foray/foray-pretty/src/java/org/foray/pretty/FOrayXDiff.java
===================================================================
--- trunk/foray/foray-pretty/src/java/org/foray/pretty/FOrayXDiff.java 2006-09-05 03:20:00 UTC (rev 7913)
+++ trunk/foray/foray-pretty/src/java/org/foray/pretty/FOrayXDiff.java 2006-09-05 22:55:26 UTC (rev 7914)
@@ -60,7 +60,7 @@
/* Begin configurable parameters. */
/** Ignores character items that are all whitespace. */
- boolean ignoreCharacterWhitespace = true;
+ private boolean ignoreCharacterWhitespace = true;
/* End configurable parameters. */
Modified: trunk/foray/foray-pretty/src/java/org/foray/pretty/dtd/DTDElement.java
===================================================================
--- trunk/foray/foray-pretty/src/java/org/foray/pretty/dtd/DTDElement.java 2006-09-05 03:20:00 UTC (rev 7913)
+++ trunk/foray/foray-pretty/src/java/org/foray/pretty/dtd/DTDElement.java 2006-09-05 22:55:26 UTC (rev 7914)
@@ -32,9 +32,9 @@
private String elementName;
- boolean hasPCDATA = false;
- boolean isEmpty = false;
- boolean hasElementChildren = false;
+ private boolean hasPCDATA = false;
+ private boolean isEmpty = false;
+ private boolean hasElementChildren = false;
public DTDElement(final String elementName, final String contentModel) {
this.elementName = elementName;
Modified: trunk/foray/foray-pretty/src/java/org/foray/pretty/dtd/ElementStack.java
===================================================================
--- trunk/foray/foray-pretty/src/java/org/foray/pretty/dtd/ElementStack.java 2006-09-05 03:20:00 UTC (rev 7913)
+++ trunk/foray/foray-pretty/src/java/org/foray/pretty/dtd/ElementStack.java 2006-09-05 22:55:26 UTC (rev 7914)
@@ -109,7 +109,7 @@
if (element == null) {
return false;
}
- if (element.hasPCDATA) {
+ if (element.hasPCDATA()) {
return true;
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|