Author: jukka
Date: Mon Mar 1 10:35:19 2010
New Revision: 917453
URL: http://svn.apache.org/viewvc?rev=917453&view=rev
Log:
PDFBOX-637: problem with static code in COSInteger/COSNumber
Add @since markers for the new constants.
Modified:
pdfbox/trunk/src/main/java/org/apache/pdfbox/cos/COSInteger.java
Modified: pdfbox/trunk/src/main/java/org/apache/pdfbox/cos/COSInteger.java
URL:
http://svn.apache.org/viewvc/pdfbox/trunk/src/main/java/org/apache/pdfbox/cos/COSInteger.java?rev=917453&r1=917452&r2=917453&view=diff
==============================================================================
--- pdfbox/trunk/src/main/java/org/apache/pdfbox/cos/COSInteger.java (original)
+++ pdfbox/trunk/src/main/java/org/apache/pdfbox/cos/COSInteger.java Mon Mar 1
10:35:19 2010
@@ -46,16 +46,28 @@
*/
private static final COSInteger[] STATIC = new COSInteger[HIGH - LOW + 1];
- /** Constant for the number zero. */
+ /**
+ * Constant for the number zero.
+ * @since Apache PDFBox 1.1.0
+ */
public static final COSInteger ZERO = get(0);
- /** Constant for the number one. */
+ /**
+ * Constant for the number one.
+ * @since Apache PDFBox 1.1.0
+ */
public static final COSInteger ONE = get(1);
- /** Constant for the number two. */
+ /**
+ * Constant for the number two.
+ * @since Apache PDFBox 1.1.0
+ */
public static final COSInteger TWO = get(2);
- /** Constant for the number three. */
+ /**
+ * Constant for the number three.
+ * @since Apache PDFBox 1.1.0
+ */
public static final COSInteger THREE = get(3);
/**