01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-422
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: 2007.07.10 at 02:10:42 PM PDT
06: //
07:
08: package com.sun.xml.ws.rm.v200702;
09:
10: import java.util.HashMap;
11: import java.util.Map;
12: import javax.xml.bind.annotation.XmlAccessType;
13: import javax.xml.bind.annotation.XmlAccessorType;
14: import javax.xml.bind.annotation.XmlAnyAttribute;
15: import javax.xml.bind.annotation.XmlRootElement;
16: import javax.xml.bind.annotation.XmlType;
17: import javax.xml.namespace.QName;
18:
19: /**
20: * <p>Java class for anonymous complex type.
21: *
22: * <p>The following schema fragment specifies the expected content contained within this class.
23: *
24: * <pre>
25: * <complexType>
26: * <complexContent>
27: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28: * <sequence>
29: * </sequence>
30: * </restriction>
31: * </complexContent>
32: * </complexType>
33: * </pre>
34: *
35: *
36: */
37: @XmlAccessorType(XmlAccessType.FIELD)
38: @XmlType(name="")
39: @XmlRootElement(name="UsesSequenceSTR")
40: public class UsesSequenceSTR {
41:
42: @XmlAnyAttribute
43: private Map<QName, String> otherAttributes = new HashMap<QName, String>();
44:
45: /**
46: * Gets a map that contains attributes that aren't bound to any typed property on this class.
47: *
48: * <p>
49: * the map is keyed by the name of the attribute and
50: * the value is the string value of the attribute.
51: *
52: * the map returned by this method is live, and you can add new attribute
53: * by updating the map directly. Because of this design, there's no setter.
54: *
55: *
56: * @return
57: * always non-null
58: */
59: public Map<QName, String> getOtherAttributes() {
60: return otherAttributes;
61: }
62:
63: }
|