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 an implicit element. Implicit element is the element created
12: * by MetaBoss as the result of some other element defined by the designer. For example
13: * looking at entities defined in the domain, MetaBoss generates certain kinds of selectors,
14: * which (in MetaBoss's opinion) are very likely to be needed.
15: *
16: * Java content class for IsImplicit element declaration.
17: * <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 1663)
18: * <p>
19: * <pre>
20: * <element name="IsImplicit" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
21: * </pre>
22: *
23: */
24: public interface IsImplicit extends javax.xml.bind.Element {
25:
26: /**
27: * Gets the value of the value property.
28: *
29: */
30: boolean isValue();
31:
32: /**
33: * Sets the value of the value property.
34: *
35: */
36: void setValue(boolean value);
37:
38: }
|