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.10.22 at 04:07:37 PDT
06: //
07:
08: package org.jaffa.tools.patternmetaengine.domain;
09:
10: /**
11: * Java content class for module 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="module">
16: * <complexContent>
17: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18: * <sequence>
19: * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
20: * <element name="module-tile-prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21: * <element name="finders-domain-pattern" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
22: * <element name="viewers-domain-pattern" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
23: * <element name="maintenance-domain-pattern" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
24: * <element name="labels" type="{}labels" minOccurs="0"/>
25: * </sequence>
26: * </restriction>
27: * </complexContent>
28: * </complexType>
29: * </pre>
30: *
31: */
32: public interface Module {
33:
34: java.util.List getViewersDomainPattern();
35:
36: java.lang.String getLabels();
37:
38: void setLabels(java.lang.String value);
39:
40: java.util.List getMaintenanceDomainPattern();
41:
42: java.lang.String getModuleTilePrefix();
43:
44: void setModuleTilePrefix(java.lang.String value);
45:
46: java.lang.String getName();
47:
48: void setName(java.lang.String value);
49:
50: java.util.List getFindersDomainPattern();
51:
52: }
|