KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openmdx > filter1 > cci > UriPropertyImpl


1 // ----------------------------------------------------------------------------
2
// Instance/ImplBegin
3
// ----------------------------------------------------------------------------
4
//////////////////////////////////////////////////////////////////////////////
5
//
6
// Name: $Id: JMIAbstractMapper.java,v 1.11 2006/01/21 23:09:07 wfro Exp $
7
// Generated by: openMDX JMI Mapper
8
// Date: Mon Apr 03 11:39:05 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.openmdx.filter1.cci;
14
15 public class UriPropertyImpl
16   extends org.openmdx.base.accessor.jmi.spi.RefObject_1
17   implements UriProperty {
18
19   public UriPropertyImpl(
20     org.openmdx.base.accessor.generic.cci.Object_1_0 object,
21     javax.jmi.reflect.RefClass refClass
22   ) {
23     super(object, refClass);
24   }
25
26 // ----------------------------------------------------------------------------
27
// Instance/ImplAttributeGet1_1
28
// ----------------------------------------------------------------------------
29
public String JavaDoc getName(
30   ) {
31     return getName(0);
32   }
33
34   protected String JavaDoc getName(
35     int index
36   ) {
37     return (String JavaDoc)this.refGetValue("org:openmdx:filter1:Property:name", index);
38   }
39
40 // ----------------------------------------------------------------------------
41
// Instance/ImplAttributeSet1_1
42
// ----------------------------------------------------------------------------
43
protected void setName(
44     String JavaDoc newValue
45   ) {
46     setName(0, newValue);
47   }
48
49   protected void setName(
50     int index,
51     String JavaDoc newValue
52   ) {
53     refSetValue("org:openmdx:filter1:Property:name", index, newValue);
54   }
55 // ----------------------------------------------------------------------------
56
// Instance/ImplAttributeGet1_1
57
// ----------------------------------------------------------------------------
58
public short getOperator(
59   ) {
60     return getOperator(0);
61   }
62
63   protected short getOperator(
64     int index
65   ) {
66     return ((java.lang.Number JavaDoc)this.refGetValue("org:openmdx:filter1:Property:operator", index)).shortValue();
67   }
68
69 // ----------------------------------------------------------------------------
70
// Instance/ImplAttributeSet1_1
71
// ----------------------------------------------------------------------------
72
public void setOperator(
73     short newValue
74   ) {
75     setOperator(0, newValue);
76   }
77
78   protected void setOperator(
79     int index,
80     short newValue
81   ) {
82     refSetValue("org:openmdx:filter1:Property:operator", index, new Short JavaDoc(newValue));
83   }
84 // ----------------------------------------------------------------------------
85
// Instance/ImplAttributeGet1_1
86
// ----------------------------------------------------------------------------
87
public short getQuantor(
88   ) {
89     return getQuantor(0);
90   }
91
92   protected short getQuantor(
93     int index
94   ) {
95     return ((java.lang.Number JavaDoc)this.refGetValue("org:openmdx:filter1:Property:quantor", index)).shortValue();
96   }
97
98 // ----------------------------------------------------------------------------
99
// Instance/ImplAttributeSet1_1
100
// ----------------------------------------------------------------------------
101
public void setQuantor(
102     short newValue
103   ) {
104     setQuantor(0, newValue);
105   }
106
107   protected void setQuantor(
108     int index,
109     short newValue
110   ) {
111     refSetValue("org:openmdx:filter1:Property:quantor", index, new Short JavaDoc(newValue));
112   }
113 // ----------------------------------------------------------------------------
114
// Instance/ImplAttributeGetSet
115
// ----------------------------------------------------------------------------
116
public java.util.Set JavaDoc getValue (
117   ) {
118     return (java.util.Set JavaDoc)this.refGetValue("value");
119   }
120 // ----------------------------------------------------------------------------
121
// Instance/ImplAttributeSetSet
122
// ----------------------------------------------------------------------------
123
public void setValue(
124     java.util.Set JavaDoc newValue
125   ) {
126     refSetValue("org:openmdx:filter1:UriProperty:value", newValue);
127   }
128
129   public void setValue(
130     String JavaDoc[] newValue
131   ) {
132     refSetValue("org:openmdx:filter1:UriProperty:value", newValue);
133   }
134
135 // ----------------------------------------------------------------------------
136
// Instance/ImplEnd
137
// ----------------------------------------------------------------------------
138
}
139
Popular Tags