You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by dj...@apache.org on 2006/02/21 21:09:51 UTC

svn commit: r379571 - /db/derby/code/trunk/java/shared/org/apache/derby/shared/common/reference/package.html

Author: djd
Date: Tue Feb 21 12:09:49 2006
New Revision: 379571

URL: http://svn.apache.org/viewcvs?rev=379571&view=rev
Log:
Add package.html file for org.apache.derby.shared.common.reference package.

Added:
    db/derby/code/trunk/java/shared/org/apache/derby/shared/common/reference/package.html   (with props)

Added: db/derby/code/trunk/java/shared/org/apache/derby/shared/common/reference/package.html
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/shared/org/apache/derby/shared/common/reference/package.html?rev=379571&view=auto
==============================================================================
--- db/derby/code/trunk/java/shared/org/apache/derby/shared/common/reference/package.html (added)
+++ db/derby/code/trunk/java/shared/org/apache/derby/shared/common/reference/package.html Tue Feb 21 12:09:49 2006
@@ -0,0 +1,14 @@
+<body>
+Useful constants that the Java compiler will in-line.
+A collection of reference interfaces that contain primitive or
+String constants. Such constants will be in-lined by the Java
+compiler hopefully leading to smaller footprint, than a reference
+to a field entails. Fields in interfaces are automatically public,
+static and final, hence constants.
+<P>
+These classes should not need to be shipped with any of the Derby jar files.
+If one is shipped with a Jar file then it most likely means the field
+representing the constant was a non-String Object (e.g. new Integer(1))
+or the final field is a calculated value that could not be resolved
+to a constant by the Java compiler.
+</body>
\ No newline at end of file

Propchange: db/derby/code/trunk/java/shared/org/apache/derby/shared/common/reference/package.html
------------------------------------------------------------------------------
    svn:eol-style = native