01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.4-b18-fcs
03: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
04: // Any modifications to this file will be lost upon recompilation of the source schema.
05: // Generated on: 2005.03.31 at 08:49:20 EST
06: //
07:
08: package com.metaboss.sdlctools.domains.enterprisemodel.storage.xmlfileimpl.dom;
09:
10: /**
11: * Flag to indicate if property value is available at run-time as a resource. Most commonly
12: * this feature is used for properties, which are language dependent. Internationalisation is achieved by
13: * forcing the property value into the run-time accessible resource and by making sure that the
14: * template generated code reads this value at run-time (and not just hardcodes it during generation time).
15: * This opens the door for creation of property files targeting different languages.
16: *
17: * Java content class for IsAvailableAsResource element declaration.
18: * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/C:/MetaBoss/XMLSchemas/MetaBoss/SdlcTools/EnterpriseModel/1.0/enterprisemodel.xsd line 1690)
19: * <p>
20: * <pre>
21: * <element name="IsAvailableAsResource" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
22: * </pre>
23: *
24: */
25: public interface IsAvailableAsResource extends javax.xml.bind.Element {
26:
27: /**
28: * Gets the value of the value property.
29: *
30: */
31: boolean isValue();
32:
33: /**
34: * Sets the value of the value property.
35: *
36: */
37: void setValue(boolean value);
38:
39: }
|