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: * The cardinality of the entity in role in association.
12: *
13: * Java content class for AssociationRoleCardinality element declaration.
14: * <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 892)
15: * <p>
16: * <pre>
17: * <element name="AssociationRoleCardinality">
18: * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
19: * <enumeration value="ZERO_OR_ONE"/>
20: * <enumeration value="ONE"/>
21: * <enumeration value="ZERO_TO_MANY"/>
22: * <enumeration value="ONE_TO_MANY"/>
23: * </restriction>
24: * </element>
25: * </pre>
26: *
27: */
28: public interface AssociationRoleCardinality extends
29: javax.xml.bind.Element {
30:
31: /**
32: * Gets the value of the value property.
33: *
34: * @return
35: * possible object is
36: * {@link java.lang.String}
37: */
38: java.lang.String getValue();
39:
40: /**
41: * Sets the value of the value property.
42: *
43: * @param value
44: * allowed object is
45: * {@link java.lang.String}
46: */
47: void setValue(java.lang.String value);
48:
49: }
|