01: // This class was generated by the JAXRPC SI, do not edit.
02: // Contents subject to change without notice.
03: // JAX-RPC Standard Implementation (1.1.3, build R1)
04: // Generated source version: 1.1.3
05:
06: package org.jboss.test.wsrp.core;
07:
08: import java.io.Serializable;
09:
10: public class PropertyDescription implements Serializable {
11: /** The serialVersionUID */
12: private static final long serialVersionUID = -9015093605452269811L;
13: protected java.lang.String name;
14: protected javax.xml.namespace.QName type;
15: protected LocalizedString label;
16: protected LocalizedString hint;
17: protected Extension[] extensions;
18:
19: public PropertyDescription() {
20: }
21:
22: public PropertyDescription(java.lang.String name,
23: javax.xml.namespace.QName type, LocalizedString label,
24: LocalizedString hint, Extension[] extensions) {
25: this .name = name;
26: this .type = type;
27: this .label = label;
28: this .hint = hint;
29: this .extensions = extensions;
30: }
31:
32: public java.lang.String getName() {
33: return name;
34: }
35:
36: public void setName(java.lang.String name) {
37: this .name = name;
38: }
39:
40: public javax.xml.namespace.QName getType() {
41: return type;
42: }
43:
44: public void setType(javax.xml.namespace.QName type) {
45: this .type = type;
46: }
47:
48: public LocalizedString getLabel() {
49: return label;
50: }
51:
52: public void setLabel(LocalizedString label) {
53: this .label = label;
54: }
55:
56: public LocalizedString getHint() {
57: return hint;
58: }
59:
60: public void setHint(LocalizedString hint) {
61: this .hint = hint;
62: }
63:
64: public Extension[] getExtensions() {
65: return extensions;
66: }
67:
68: public void setExtensions(Extension[] extensions) {
69: this.extensions = extensions;
70: }
71: }
|