[FOray-commit] SF.net SVN: foray:[12484] trunk/foray
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2022-01-27 13:22:36
|
Revision: 12484
http://sourceforge.net/p/foray/code/12484
Author: victormote
Date: 2022-01-27 13:22:30 +0000 (Thu, 27 Jan 2022)
Log Message:
-----------
Remove build dependency on lombok. Interesting idea, worked well, but we don't intend to use it more than we are, which doesn't justify the dependency.
Modified Paths:
--------------
trunk/foray/build.gradle
trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfCrossRefEntry.java
trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfGraphicsState4a.java
trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfHeader.java
trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfSerializationConfig4a.java
trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfTextState.java
trunk/foray/foray-pdf/src/main/java/org/foray/pdf/object/PdfDashPattern.java
trunk/foray/foray-unicode/src/main/java/org/foray/unicode/Block.java
trunk/foray/foray-unicode/src/main/java/org/foray/unicode/CodePoint.java
Modified: trunk/foray/build.gradle
===================================================================
--- trunk/foray/build.gradle 2022-01-27 12:17:01 UTC (rev 12483)
+++ trunk/foray/build.gradle 2022-01-27 13:22:30 UTC (rev 12484)
@@ -18,11 +18,6 @@
Runs all tests from all projects.
*/
-
-plugins {
- id 'io.freefair.lombok' version '5.3.0' apply false
-}
-
def buildDate = new Date().format("yyyy-MM-dd 'at' HH:mm 'GMT'", TimeZone.getTimeZone("GMT"))
allprojects {
@@ -103,7 +98,6 @@
apply plugin: 'java-library'
apply plugin: 'checkstyle'
apply plugin: 'maven-publish'
- apply plugin: 'io.freefair.lombok'
java {
sourceCompatibility = javaSourceCompatibility
Modified: trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfCrossRefEntry.java
===================================================================
--- trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfCrossRefEntry.java 2022-01-27 12:17:01 UTC (rev 12483)
+++ trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfCrossRefEntry.java 2022-01-27 13:22:30 UTC (rev 12484)
@@ -32,9 +32,6 @@
import org.axsl.utility.sequence.ByteSequencePlus;
-import lombok.Getter;
-import lombok.Setter;
-
/**
* An entry in the cross-reference table found near the end of a PDF.
* Note that, like the entry in the physical file itself, the object number of the object referenced is not stored
@@ -60,25 +57,13 @@
/** Formatting string for writing the generation value. */
private static final String GENERATION_FORMATTING_STRING = "%05d";
- /**
- * The 0-based offset into the file content (bytes) to which this entry points.
- * @param offset The new value for the offset.
- * @return The value for the offset.
- */
- @Getter
- @Setter
+ /** The 0-based offset into the file content (bytes) to which this entry points. */
private long offset;
/* The capacity defined in the PDF reference is 10 decimal digits, a maximum of 9,999,999,999, one less than 10
* billion, about 5 times as much as can be stored in an {@link Integer#TYPE}.
* Therefore we use {@link Long#TYPE}. */
- /**
- * The generation number of the object referenced by this entry.
- * @param generation The new value for the generation.
- * @return The value for the generation.
- */
- @Getter
- @Setter
+ /** The generation number of the object referenced by this entry. */
private int generation;
/* The capacity defined in the PDF reference is 5 decimal digits, a maximum of 99,999, one less than 10
* billion, about 3 times as much as can be stored in an {@link Short#TYPE}, and about 1.5 times a much as can be
@@ -85,23 +70,11 @@
* stored in a {@link Character#TYPE}.
* Therefore we use {@link Integer#TYPE}. */
- /**
- * Indicates whether this entry is "in-use" ("n" in the PDF), or "free" ("f" in the PDF).
- * @param inUse The new value for "in-use".
- * @return True if and only if this entry is "in-use".
- */
- @Getter
- @Setter
+ /** Indicates whether this entry is "in-use" ("n" in the PDF), or "free" ("f" in the PDF). */
private boolean inUse;
- /**
- * The referenced object.
- * This will be null if the document is being parsed and the parser has not yet parsed the object at this offset.
- * @param object The object referenced by this cross-reference entry.
- * @return The object referenced by this cross-reference entry.
- */
- @Getter
- @Setter
+ /** The referenced object. This will be null if the document is being parsed and the parser has not yet parsed the
+ * object at this offset. */
private PdfObject object;
/**
@@ -190,4 +163,68 @@
return this.inUse ? (byte) 'n' : (byte) 'f';
}
+ /**
+ * Returns the value for the offset.
+ * @return The value for the offset.
+ */
+ public long getOffset() {
+ return offset;
+ }
+
+ /**
+ * Sets the new value for the offset.
+ * @param offset The new value for the offset.
+ */
+ public void setOffset(final long offset) {
+ this.offset = offset;
+ }
+
+ /**
+ * Returns the value for the generation.
+ * @return The value for the generation.
+ */
+ public int getGeneration() {
+ return generation;
+ }
+
+ /**
+ * Sets the new value for the generation.
+ * @param generation The new value for the generation.
+ */
+ public void setGeneration(final int generation) {
+ this.generation = generation;
+ }
+
+ /**
+ * Indicates whether this entry is "in-use".
+ * @return True if and only if this entry is "in-use".
+ */
+ public boolean isInUse() {
+ return inUse;
+ }
+
+ /**
+ * Sets the "in-use" value.
+ * @param inUse The new value for "in-use".
+ */
+ public void setInUse(final boolean inUse) {
+ this.inUse = inUse;
+ }
+
+ /**
+ * Returns the object referenced by this cross-reference entry.
+ * @return The object referenced by this cross-reference entry.
+ */
+ public PdfObject getObject() {
+ return object;
+ }
+
+ /**
+ * Sets the object referenced by this cross-reference entry.
+ * @param object The object referenced by this cross-reference entry.
+ */
+ public void setObject(final PdfObject object) {
+ this.object = object;
+ }
+
}
Modified: trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfGraphicsState4a.java
===================================================================
--- trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfGraphicsState4a.java 2022-01-27 12:17:01 UTC (rev 12483)
+++ trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfGraphicsState4a.java 2022-01-27 13:22:30 UTC (rev 12484)
@@ -34,8 +34,6 @@
import org.axsl.pdf.PdfColor;
import org.axsl.pdf.PdfLineCapStyle;
-import lombok.Getter;
-
/**
* The PDF graphics state.
* Tracks the current state of various properties used to render content, such as colors and fonts.
@@ -47,41 +45,19 @@
*/
public class PdfGraphicsState4a {
- /**
- * The stroke color.
- * @return The stroke color.
- */
- @Getter
+ /** The stroke color. */
private PdfColor strokeColor;
- /**
- * The "non-stroke" or "other" color.
- * @return The non-stroke or other color.
- */
- @Getter
+ /** The "non-stroke" or "other" color. */
private PdfColor fillColor;
- /**
- * The text state.
- * @return The text state.
- */
- @Getter
+ /** The text state. */
private PdfTextState textState = new PdfTextState();
- /**
- * The line cap style.
- * @return The line cap style.
- * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 4.3.2."
- */
- @Getter
+ /** The line cap style. */
private PdfLineCapStyle lineCapStyle;
- /**
- * The dash pattern.
- * @return The dash pattern.
- * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 4.3.2."
- */
- @Getter
+ /** The dash pattern. */
private PdfDashPattern dashPattern;
/**
@@ -118,6 +94,14 @@
}
/**
+ * Returns the stroke color.
+ * @return The stroke color.
+ */
+ public PdfColor getStrokeColor() {
+ return strokeColor;
+ }
+
+ /**
* Sets the stroke color.
* @param newStrokeColor The new stroke color.
* @return True if and only if the Graphics State was changed by this operation.
@@ -136,6 +120,14 @@
}
/**
+ * Returns the non-stroke or "other" color.
+ * @return The non-stroke or other color.
+ */
+ public PdfColor getFillColor() {
+ return fillColor;
+ }
+
+ /**
* Sets the "non-stroke" or "other" or "fill" color.
* @param newFillColor The new non-stroke color.
* @return True if and only if the Graphics State was changed by this operation.
@@ -154,6 +146,23 @@
}
/**
+ * Returns the text state.
+ * @return The text state.
+ */
+ public PdfTextState getTextState() {
+ return textState;
+ }
+
+ /**
+ * Returns the line cap style.
+ * @return The line cap style.
+ * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 4.3.2."
+ */
+ public PdfLineCapStyle getLineCapStyle() {
+ return lineCapStyle;
+ }
+
+ /**
* Sets the line cap style.
* @param newLineCapStyle The new line cap style.
* @return True if and only if the Graphics State was changed by this operation.
@@ -169,6 +178,15 @@
}
/**
+ * Returns the dash pattern.
+ * @return The dash pattern.
+ * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 4.3.2."
+ */
+ public PdfDashPattern getDashPattern() {
+ return dashPattern;
+ }
+
+ /**
* Sets the line dash pattern.
* @param newDashPattern The new dash pattern.
* @return True if and only if the Graphics State was changed by this operation.
Modified: trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfHeader.java
===================================================================
--- trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfHeader.java 2022-01-27 12:17:01 UTC (rev 12483)
+++ trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfHeader.java 2022-01-27 13:22:30 UTC (rev 12484)
@@ -34,9 +34,6 @@
import org.axsl.pdf.PdfVersion;
-import lombok.Getter;
-import lombok.Setter;
-
/**
* The header portion of a PDF document.
* @see "PDF Reference, Sixth Edition (PDF version 1.7), Section 3.4.1"
@@ -54,27 +51,13 @@
(byte) 0xAD
);
- /**
- * The version of PDF for this document.
- * @param pdfVersion The new value for the PDF version.
- * @return The PDF version.
- */
- @Getter
- @Setter
+ /** The version of PDF for this document. */
private PdfVersion pdfVersion;
- /**
- * The binary comment, written immediately after the header line, indicating to parsing applications that this
- * document may contain binary data.
- * @see "PDF Reference, Sixth Edition (PDF version 1.7), Section 3.4.1."
- * @param binaryComment The new value for the binary comment.
- * @return The binary comment.
- */
- @Getter
- @Setter
+ /** The binary comment, written immediately after the header line, indicating to parsing applications that this
+ * document may contain binary data. */
private ByteArray binaryComment;
-
public PdfHeader() {
this.pdfVersion = DEFAULT_PDF_VERSION;
this.binaryComment = DEFAULT_BINARY_COMMENT;
@@ -92,4 +75,39 @@
return builder;
}
+ /**
+ * Returns the version of PDF for this document.
+ * @return The PDF version.
+ */
+ public PdfVersion getPdfVersion() {
+ return pdfVersion;
+ }
+
+ /**
+ * Sets the PDF version for this document.
+ * @param pdfVersion The new value for the PDF version.
+ */
+ public void setPdfVersion(final PdfVersion pdfVersion) {
+ this.pdfVersion = pdfVersion;
+ }
+
+ /**
+ * Returns the binary comment, written immediately after the header line, indicating to parsing applications that
+ * this document may contain binary data.
+ * @see "PDF Reference, Sixth Edition (PDF version 1.7), Section 3.4.1."
+ * @return The binary comment.
+ */
+ public ByteArray getBinaryComment() {
+ return binaryComment;
+ }
+
+ /**
+ * Sets the binary comments.
+ * @param binaryComment The new value for the binary comment.
+ * @see #getBinaryComment()
+ */
+ public void setBinaryComment(final ByteArray binaryComment) {
+ this.binaryComment = binaryComment;
+ }
+
}
Modified: trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfSerializationConfig4a.java
===================================================================
--- trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfSerializationConfig4a.java 2022-01-27 12:17:01 UTC (rev 12483)
+++ trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfSerializationConfig4a.java 2022-01-27 13:22:30 UTC (rev 12484)
@@ -30,8 +30,6 @@
import org.axsl.pdf.PdfSerializationConfig;
-import lombok.Setter;
-
/**
* Concrete implementaton of {@link PdfSerializationConfig}.
*/
@@ -40,11 +38,7 @@
/** The default line length of the output PDF document. */
public static final int DEFAULT_CHARACTERS_PER_LINE = 80;
- /**
- * The desired maximum length of lines in the serialized document.
- * @param maxLineLength The desired maximum length of lines in the serialized document.
- */
- @Setter
+ /** The desired maximum length of lines in the serialized document. */
private int maxLineLength;
/**
@@ -62,4 +56,12 @@
return this.maxLineLength;
}
+ /**
+ * Sets the desired maximum length of lines in the serialized document.
+ * @param maxLineLength The desired maximum length of lines in the serialized document.
+ */
+ public void setMaxLineLength(final int maxLineLength) {
+ this.maxLineLength = maxLineLength;
+ }
+
}
Modified: trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfTextState.java
===================================================================
--- trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfTextState.java 2022-01-27 12:17:01 UTC (rev 12483)
+++ trunk/foray/foray-pdf/src/main/java/org/foray/pdf/PdfTextState.java 2022-01-27 13:22:30 UTC (rev 12484)
@@ -31,8 +31,6 @@
import org.axsl.pdf.PdfFont;
import org.axsl.pdf.PdfTextRenderingMode;
-import lombok.Getter;
-
/**
* The text state for the PDF graphics state.
* @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2."
@@ -42,74 +40,31 @@
/** Constant for the initial horizontal scaling percentage, that is 100%. */
public static final float INITIAL_HORIZONTAL_SCALING = 100;
- /**
- * The character spacing, expressed in unscaled text space units.
- * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.1."
- * @return The character spacing.
- */
- @Getter
+ /** The character spacing, expressed in unscaled text space units. */
private float characterSpacing;
- /**
- * The word spacing, expressed in unscaled text space units.
- * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.2."
- * @return The word spacing.
- */
- @Getter
+ /** The word spacing, expressed in unscaled text space units. */
private float wordSpacing;
- /**
- * The horizontal scaling, a percentage.
- * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.3."
- * @return The horizontal scaling.
- */
- @Getter
+ /** The horizontal scaling, a percentage. */
private float horizontalScaling;
- /**
- * The text leading, expressed in unscaled text units.
- * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.4."
- * @return The text leading.
- */
- @Getter
+ /** The text leading, expressed in unscaled text units. */
private float leading;
- /**
- * The font.
- * @return The font.
- */
- @Getter
+ /** The font. */
private PdfFont font;
- /**
- * The font size.
- * @return The font size.
- */
- @Getter
+ /** The font size. */
private float fontSize;
- /**
- * The text rendering mode.
- * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.5."
- * @return The text rendering mode.
- */
- @Getter
+ /** The text rendering mode. */
private PdfTextRenderingMode textRenderingMode;
- /**
- * The text rise, expressed in unscaled text space units.
- * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.6."
- * @return The text rise.
- */
- @Getter
+ /** The text rise, expressed in unscaled text space units. */
private float textRise;
- /**
- * The text knockout flag.
- * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.7."
- * @return The text knockout.
- */
- @Getter
+ /** The text knockout flag. */
private boolean textKnockout;
/**
@@ -290,4 +245,83 @@
return anyChange;
}
+ /**
+ * Returns the character spacing.
+ * @return The character spacing, expressed in unscaled text space units.
+ * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.1."
+ */
+ public float getCharacterSpacing() {
+ return characterSpacing;
+ }
+
+ /**
+ * Returns the word spacing.
+ * @return The word spacing, expressed in unscaled text space units.
+ * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.2."
+ */
+ public float getWordSpacing() {
+ return wordSpacing;
+ }
+
+ /**
+ * Returns the horizontal scaling.
+ * @return The horizontal scaling, a percentage.
+ * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.3."
+ */
+ public float getHorizontalScaling() {
+ return horizontalScaling;
+ }
+
+ /**
+ * Returns the text leading.
+ * @return The text leading, expressed in unscaled text units.
+ * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.4."
+ */
+ public float getLeading() {
+ return leading;
+ }
+
+ /**
+ * Returns the font.
+ * @return The font.
+ */
+ public PdfFont getFont() {
+ return font;
+ }
+
+ /**
+ * Returns the font size.
+ * @return The font size.
+ */
+ public float getFontSize() {
+ return fontSize;
+ }
+
+ /**
+ * Returns the text rendering mode.
+ * @return The text rendering mode.
+ * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.5."
+ */
+ public PdfTextRenderingMode getTextRenderingMode() {
+ return textRenderingMode;
+ }
+
+ /**
+ * Returns the text rise.
+ * @return The text rise, expressed in unscaled text space units.
+ * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.6."
+ */
+ public float getTextRise() {
+ return textRise;
+ }
+
+ /**
+ * Returns the text knockout flag.
+ * @return The text knockout flag.
+ * @see "PDF Reference, Sixth Edition (PDF Version 1.7), Section 5.2.7."
+ */
+ public boolean isTextKnockout() {
+ return textKnockout;
+ }
+
}
Modified: trunk/foray/foray-pdf/src/main/java/org/foray/pdf/object/PdfDashPattern.java
===================================================================
--- trunk/foray/foray-pdf/src/main/java/org/foray/pdf/object/PdfDashPattern.java 2022-01-27 12:17:01 UTC (rev 12483)
+++ trunk/foray/foray-pdf/src/main/java/org/foray/pdf/object/PdfDashPattern.java 2022-01-27 13:22:30 UTC (rev 12484)
@@ -28,8 +28,6 @@
package org.foray.pdf.object;
-import lombok.Getter;
-
/**
* A PDF Line Dash Pattern.
* Instances of this class are immutable.
@@ -46,18 +44,10 @@
/** Constant used to designate a "dashed" dash pattern. */
public static final PdfDashPattern DASHED = new PdfDashPattern(new float[] {3, 3}, 0);
- /**
- * The dash array.
- * @return The dash array.
- */
- @Getter
+ /** The dash array. */
private float[] dashArray;
- /**
- * The dash phase.
- * @return The dash phase.
- */
- @Getter
+ /** The dash phase. */
private float dashPhase;
public PdfDashPattern(final float[] dashArray, final float dashPhase) {
@@ -66,6 +56,22 @@
this.dashPhase = dashPhase;
}
+ /**
+ * Returns the dash array.
+ * @return The dash array.
+ */
+ public float[] getDashArray() {
+ return this.dashArray;
+ }
+
+ /**
+ * Returns the dash phase.
+ * @return The dash phase.
+ */
+ public float getDashPhase() {
+ return this.dashPhase;
+ }
+
@Override
public boolean equals(final Object other) {
if (other == null) {
Modified: trunk/foray/foray-unicode/src/main/java/org/foray/unicode/Block.java
===================================================================
--- trunk/foray/foray-unicode/src/main/java/org/foray/unicode/Block.java 2022-01-27 12:17:01 UTC (rev 12483)
+++ trunk/foray/foray-unicode/src/main/java/org/foray/unicode/Block.java 2022-01-27 13:22:30 UTC (rev 12484)
@@ -32,39 +32,21 @@
import java.util.Collections;
import java.util.List;
-import lombok.Getter;
-
/**
* The Unicode code blocks.
*/
public class Block {
- /**
- * The name of the code block.
- * @return The name of the code block.
- */
- @Getter
+ /** The name of the code block. */
private String name;
- /**
- * The first code point int the block.
- * @return The first code point int the block.
- */
- @Getter
+ /** The first code point in the block. */
private int start;
- /**
- * The last code point in the block.
- * @return The last code point in the block.
- */
- @Getter
+ /** The last code point in the block. */
private int end;
- /**
- * The list of known code points for this block, sorted by code point value.
- * @return The list of known code points for this block, sorted by code point value.
- */
- @Getter
+ /** The list of known code points for this block, sorted by code point value. */
private List<CodePoint> codePoints = new ArrayList<CodePoint>();
/**
@@ -80,6 +62,38 @@
}
/**
+ * Returns the name of the code block.
+ * @return The name of the code block.
+ */
+ public String getName() {
+ return this.name;
+ }
+
+ /**
+ * Returns the first code point in the block.
+ * @return The first code point in the block.
+ */
+ public int getStart() {
+ return this.start;
+ }
+
+ /**
+ * Returns the last code point in the block.
+ * @return The last code point in the block.
+ */
+ public int getEnd() {
+ return this.end;
+ }
+
+ /**
+ * Returns the list of known code points for this block, sorted by code point value.
+ * @return The list of known code points for this block, sorted by code point value.
+ */
+ public List<CodePoint> getCodePoints() {
+ return this.codePoints;
+ }
+
+ /**
* Returns a normalizes version of this block's name.
* @return The normalized block name.
* @see #normalizeName(String)
Modified: trunk/foray/foray-unicode/src/main/java/org/foray/unicode/CodePoint.java
===================================================================
--- trunk/foray/foray-unicode/src/main/java/org/foray/unicode/CodePoint.java 2022-01-27 12:17:01 UTC (rev 12483)
+++ trunk/foray/foray-unicode/src/main/java/org/foray/unicode/CodePoint.java 2022-01-27 13:22:30 UTC (rev 12484)
@@ -30,8 +30,6 @@
import java.util.Locale;
-import lombok.Getter;
-
/**
* A Unicode code point.
* @see "http://www.unicode.org/L2/L1999/UnicodeData.html"
@@ -86,25 +84,13 @@
/** Radix used to parse Base 16 integers, which is {@value}. */
private static final int BASE_16_RADIX = 16;
- /**
- * The numeric value assigned to this code point.
- * @return The numeric value assigned to this code point.
- */
- @Getter
+ /** The numeric value assigned to this code point. */
private int value;
- /**
- * The name of this code point.
- * @return The name of this code point.
- */
- @Getter
+ /** The name of this code point. */
private String name;
- /**
- * The Unicode 1.0 name.
- * @return The Unicode 1.0 name.
- */
- @Getter
+ /** The Unicode 1.0 name. */
private String unicode10Name;
/**
@@ -164,6 +150,30 @@
this.unicode10Name = unicode10Name;
}
+ /**
+ * Returns the numeric value assigned to this code point.
+ * @return The numeric value assigned to this code point.
+ */
+ public int getValue() {
+ return this.value;
+ }
+
+ /**
+ * Returns the name of this code point.
+ * @return The name of this code point.
+ */
+ public String getName() {
+ return this.name;
+ }
+
+ /**
+ * Returns the Unicode 1.0 name.
+ * @return The Unicode 1.0 name.
+ */
+ public String getUnicode10Name() {
+ return this.unicode10Name;
+ }
+
@Override
public int compareTo(final CodePoint o) {
return this.value - o.value;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|