/**
* Enum indicating that extension is compatible with other extension.
*/
/**
* Enum indicating that extension is compatible with other Package
* Specification.
*/
public static final Compatibility COMPATIBLE = new Compatibility("COMPATIBLE");
/**
* Enum indicating that extension requires an upgrade
* of specification to be compatible with other extension.
*/
/**
* Enum indicating that extension requires an upgrade
* of specification to be compatible with other Package Specification.
*/
public static final Compatibility REQUIRE_SPECIFICATION_UPGRADE = new Compatibility("REQUIRE_SPECIFICATION_UPGRADE");
/**
* Enum indicating that extension requires a vendor
* switch to be compatible with other extension.
*/
/**
* Enum indicating that extension requires a vendor
* switch to be compatible with other Package Specification.
*/
public static final Compatibility REQUIRE_VENDOR_SWITCH = new Compatibility("REQUIRE_VENDOR_SWITCH");
/**
* Enum indicating that extension requires an upgrade
* of implementation to be compatible with other extension.
*/
/**
* Enum indicating that extension requires an upgrade
* of implementation to be compatible with other Package Specification.
*/
public static final Compatibility [[#variablefdd5100]]= new Compatibility( [[#variablefdd5040]]);
/**
* Enum indicating that extension is incompatible with
* other extension in ways other than other enums
* indicate). For example the other extension may have
* a different ID.
*/
/**
* This enum indicates that an extension is incompatible with
* other Package Specification in ways other than other enums
* indicate. For example, the other Package Specification
* may have a different ID.
*/
public static final Compatibility INCOMPATIBLE = new Compatibility("INCOMPATIBLE");
/**
* The name of the optional package being made available, or required.
*/
/**
* The name of the Package Specification.
*/
private String [[#variablefdd4fc0]];
/**
* The version number (dotted decimal notation) of the specification
* to which this optional package conforms.
*/
private DeweyDecimal specificationVersion;
/**
* The name of the company or organization that originated the
* specification to which this optional package conforms.
*/
/**
* The name of the company or organization that originated the
* specification to which this specification conforms.
*/
private String specificationVendor;
|