| java.lang.Object javax.media.j3d.VersionInfo
VersionInfo | class VersionInfo extends Object (Code) | | The VersionInfo class contains strings that describe the implementation
and specification version of the javax.media.j3d pacakge. These strings
are made available as properties obtained from the VirtualUniverse class.
NOTE TO DEVELOPERS:
Developers are strongly encouraged to do the following whenever they
modify the 3D graphics API for the Java platform:
- The VENDOR_DEVELOPER string should be modified to
indicate the name of the individuals or organizations who have
modified the source code.
- The VERSION_DEV_STRING may be modified to indicate
additional information about the particular build, but this is
not required.
- The strings denoted as being unmodifiable should not be
modified.
The tags of the form @STRING@ are populated by ant when the project is built
See Also: VirtualUniverse.getProperties |
Field Summary | |
final static boolean | isDebug Constant that indicates whether or not this is a debug build. | final static boolean | isDevPhase This static final variable is used to enable debugging and
assertion checking during the development phase of a particular
version of 3D graphics API for the Java platform. | final static boolean | isProduction This static final variable is used indicate a production
(beta, release candidate, fcs, or patch) build.
This parameter is controlled by ant via the build.xml file. |
isDebug | final static boolean isDebug(Code) | | Constant that indicates whether or not this is a debug build.
|
isDevPhase | final static boolean isDevPhase(Code) | | This static final variable is used to enable debugging and
assertion checking during the development phase of a particular
version of 3D graphics API for the Java platform. It is disabled
for "opt" production builds (beta, release candidate, fcs, and
patch builds). It is enabled for all "debug" builds and for daily
and stable "opt" builds.
This parameter is controlled by ant via the build.xml file. The
default value is true.
|
isProduction | final static boolean isProduction(Code) | | This static final variable is used indicate a production
(beta, release candidate, fcs, or patch) build.
This parameter is controlled by ant via the build.xml file. The
default value is false.
|
getSpecificationVendor | static String getSpecificationVendor()(Code) | | Returns the specification vendor string.
the specification vendor string |
getSpecificationVersion | static String getSpecificationVersion()(Code) | | Returns the specification version string.
the specification version string |
getVendor | static String getVendor()(Code) | | Returns the implementation vendor string.
the implementation vendor string |
getVersion | static String getVersion()(Code) | | Returns the implementation version string.
the implementation version string |
|
|