01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0
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: 2003.03.06 at 09:44:47 PST
06: //
07:
08: package org.jaffa.presentation.portlet.component.componentdomain;
09:
10: /**
11: * Java content class for component complex type.
12: * <p>The following schema fragment specifies the expected content contained within this java content object.
13: * <p>
14: * <pre>
15: * <complexType name="component">
16: * <complexContent>
17: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18: * <sequence>
19: * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
20: * <element name="class" type="{http://www.w3.org/2001/XMLSchema}string"/>
21: * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22: * <element name="mandatory-function" type="{}mandatory-function" maxOccurs="unbounded" minOccurs="0"/>
23: * <element name="optional-function" type="{}optional-function" maxOccurs="unbounded" minOccurs="0"/>
24: * </sequence>
25: * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
26: * </restriction>
27: * </complexContent>
28: * </complexType>
29: * </pre>
30: *
31: */
32: public interface Component {
33:
34: java.lang.String getType();
35:
36: void setType(java.lang.String value);
37:
38: java.lang.String getDescription();
39:
40: void setDescription(java.lang.String value);
41:
42: java.util.List getMandatoryFunction();
43:
44: java.util.List getOptionalFunction();
45:
46: java.lang.String getClassName();
47:
48: void setClassName(java.lang.String value);
49:
50: java.lang.String getId();
51:
52: void setId(java.lang.String value);
53:
54: }
|