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 globally unique reference of the association. Normally in form DomainRef.AssociationName (e.g. HatMaker.Crm.Main.OrderHasOrderItems).
12: *
13: * Java content class for AssociationRef 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 803)
15: * <p>
16: * <pre>
17: * <element name="AssociationRef" type="{http://www.w3.org/2001/XMLSchema}string"/>
18: * </pre>
19: *
20: */
21: public interface AssociationRef extends javax.xml.bind.Element {
22:
23: /**
24: * Gets the value of the value property.
25: *
26: * @return
27: * possible object is
28: * {@link java.lang.String}
29: */
30: java.lang.String getValue();
31:
32: /**
33: * Sets the value of the value property.
34: *
35: * @param value
36: * allowed object is
37: * {@link java.lang.String}
38: */
39: void setValue(java.lang.String value);
40:
41: }
|