[FOray-commit] SF.net SVN: foray: [7905] trunk/foray/foray-ps/src/java/org/foray/ps/encode
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-09-05 01:42:12
|
Revision: 7905
http://svn.sourceforge.net/foray/?rev=7905&view=rev
Author: victormote
Date: 2006-09-04 18:42:08 -0700 (Mon, 04 Sep 2006)
Log Message:
-----------
Clean up variable visibility problems caught by checkstyle.
Modified Paths:
--------------
trunk/foray/foray-ps/src/java/org/foray/ps/encode/CMap04Entry.java
trunk/foray/foray-ps/src/java/org/foray/ps/encode/CMap12Entry.java
Modified: trunk/foray/foray-ps/src/java/org/foray/ps/encode/CMap04Entry.java
===================================================================
--- trunk/foray/foray-ps/src/java/org/foray/ps/encode/CMap04Entry.java 2006-09-05 01:41:50 UTC (rev 7904)
+++ trunk/foray/foray-ps/src/java/org/foray/ps/encode/CMap04Entry.java 2006-09-05 01:42:08 UTC (rev 7905)
@@ -29,14 +29,14 @@
* 16-bit Unicode codepoint ranges.
*/
public class CMap04Entry {
- public char unicodeStart;
- public char unicodeEnd;
- public char glyphStartIndex;
+ private char unicodeStart;
+ private char unicodeEnd;
+ private char glyphStartIndex;
/* For contiguous entries, this will be null. For non-contiguous entries,
* this array contains the glyph Indexes for the range of Unicode
* characters. */
- public char[] glyphIndexes;
+ private char[] glyphIndexes;
public CMap04Entry(final char unicodeStart, final char unicodeEnd,
final char glyphStartIndex) {
Modified: trunk/foray/foray-ps/src/java/org/foray/ps/encode/CMap12Entry.java
===================================================================
--- trunk/foray/foray-ps/src/java/org/foray/ps/encode/CMap12Entry.java 2006-09-05 01:41:50 UTC (rev 7904)
+++ trunk/foray/foray-ps/src/java/org/foray/ps/encode/CMap12Entry.java 2006-09-05 01:42:08 UTC (rev 7905)
@@ -29,9 +29,9 @@
* 32-bit Unicode codepoint ranges.
*/
public class CMap12Entry {
- public int unicodeStart;
- public int unicodeEnd;
- public int glyphStartIndex;
+ private int unicodeStart;
+ private int unicodeEnd;
+ private int glyphStartIndex;
public CMap12Entry(final int unicodeStart, final int unicodeEnd,
final int glyphStartIndex) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|