1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.ws.commons.schema;
18
19
20
21
22
23
24
25
26 public class XmlSchemaAttributeGroup extends XmlSchemaAnnotated {
27
28
29
30
31 public XmlSchemaAttributeGroup() {
32 attributes = new XmlSchemaObjectCollection();
33 }
34
35 XmlSchemaAnyAttribute anyAttribute;
36
37 public XmlSchemaAnyAttribute getAnyAttribute() {
38 return this.anyAttribute;
39 }
40
41 public void setAnyAttribute(XmlSchemaAnyAttribute anyAttribute) {
42 this.anyAttribute = anyAttribute;
43 }
44
45 XmlSchemaObjectCollection attributes;
46
47 public XmlSchemaObjectCollection getAttributes() {
48 return this.attributes;
49 }
50
51 public void setAttributes(XmlSchemaObjectCollection attributes) {
52 this.attributes = attributes;
53 }
54
55 String name;
56
57 public String getName() {
58 return this.name;
59 }
60
61 public void setName(String name) {
62 this.name = name;
63 }
64 }