KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > calipso > reportgenerator > reportdefinitions > MetricProperties


1 /*
2  * This class was automatically generated with
3  * <a HREF="http://www.castor.org">Castor 0.9.4.3</a>, using an XML
4  * Schema.
5  * $Id$
6  */

7
8 package com.calipso.reportgenerator.reportdefinitions;
9
10   //---------------------------------/
11
//- Imported classes and packages -/
12
//---------------------------------/
13

14 import java.io.IOException JavaDoc;
15 import java.io.Reader JavaDoc;
16 import java.io.Serializable JavaDoc;
17 import java.io.Writer JavaDoc;
18 import java.util.Enumeration JavaDoc;
19 import java.util.Vector JavaDoc;
20 import org.exolab.castor.xml.MarshalException;
21 import org.exolab.castor.xml.Marshaller;
22 import org.exolab.castor.xml.Unmarshaller;
23 import org.exolab.castor.xml.ValidationException;
24 import org.xml.sax.ContentHandler JavaDoc;
25
26 /**
27  * Class MetricProperties.
28  *
29  * @version $Revision$ $Date$
30  */

31 public class MetricProperties implements java.io.Serializable JavaDoc {
32
33
34       //--------------------------/
35
//- Class/Member Variables -/
36
//--------------------------/
37

38     /**
39      * Field _metricPropertyList
40      */

41     private java.util.Vector JavaDoc _metricPropertyList;
42
43
44       //----------------/
45
//- Constructors -/
46
//----------------/
47

48     public MetricProperties() {
49         super();
50         _metricPropertyList = new Vector JavaDoc();
51     } //-- com.calipso.reportgenerator.reportdefinitions.MetricProperties()
52

53
54       //-----------/
55
//- Methods -/
56
//-----------/
57

58     /**
59      * Method addMetricProperty
60      *
61      * @param vMetricProperty
62      */

63     public void addMetricProperty(com.calipso.reportgenerator.reportdefinitions.MetricProperty vMetricProperty)
64         throws java.lang.IndexOutOfBoundsException JavaDoc
65     {
66         _metricPropertyList.addElement(vMetricProperty);
67     } //-- void addMetricProperty(com.calipso.reportgenerator.reportdefinitions.MetricProperty)
68

69     /**
70      * Method addMetricProperty
71      *
72      * @param index
73      * @param vMetricProperty
74      */

75     public void addMetricProperty(int index, com.calipso.reportgenerator.reportdefinitions.MetricProperty vMetricProperty)
76         throws java.lang.IndexOutOfBoundsException JavaDoc
77     {
78         _metricPropertyList.insertElementAt(vMetricProperty, index);
79     } //-- void addMetricProperty(int, com.calipso.reportgenerator.reportdefinitions.MetricProperty)
80

81     /**
82      * Method enumerateMetricProperty
83      */

84     public java.util.Enumeration JavaDoc enumerateMetricProperty()
85     {
86         return _metricPropertyList.elements();
87     } //-- java.util.Enumeration enumerateMetricProperty()
88

89     /**
90      * Method getMetricProperty
91      *
92      * @param index
93      */

94     public com.calipso.reportgenerator.reportdefinitions.MetricProperty getMetricProperty(int index)
95         throws java.lang.IndexOutOfBoundsException JavaDoc
96     {
97         //-- check bounds for index
98
if ((index < 0) || (index > _metricPropertyList.size())) {
99             throw new IndexOutOfBoundsException JavaDoc();
100         }
101         
102         return (com.calipso.reportgenerator.reportdefinitions.MetricProperty) _metricPropertyList.elementAt(index);
103     } //-- com.calipso.reportgenerator.reportdefinitions.MetricProperty getMetricProperty(int)
104

105     /**
106      * Method getMetricProperty
107      */

108     public com.calipso.reportgenerator.reportdefinitions.MetricProperty[] getMetricProperty()
109     {
110         int size = _metricPropertyList.size();
111         com.calipso.reportgenerator.reportdefinitions.MetricProperty[] mArray = new com.calipso.reportgenerator.reportdefinitions.MetricProperty[size];
112         for (int index = 0; index < size; index++) {
113             mArray[index] = (com.calipso.reportgenerator.reportdefinitions.MetricProperty) _metricPropertyList.elementAt(index);
114         }
115         return mArray;
116     } //-- com.calipso.reportgenerator.reportdefinitions.MetricProperty[] getMetricProperty()
117

118     /**
119      * Method getMetricPropertyCount
120      */

121     public int getMetricPropertyCount()
122     {
123         return _metricPropertyList.size();
124     } //-- int getMetricPropertyCount()
125

126     /**
127      * Method isValid
128      */

129     public boolean isValid()
130     {
131         try {
132             validate();
133         }
134         catch (org.exolab.castor.xml.ValidationException vex) {
135             return false;
136         }
137         return true;
138     } //-- boolean isValid()
139

140     /**
141      * Method marshal
142      *
143      * @param out
144      */

145     public void marshal(java.io.Writer JavaDoc out)
146         throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
147     {
148         
149         Marshaller.marshal(this, out);
150     } //-- void marshal(java.io.Writer)
151

152     /**
153      * Method marshal
154      *
155      * @param handler
156      */

157     public void marshal(org.xml.sax.ContentHandler JavaDoc handler)
158         throws java.io.IOException JavaDoc, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
159     {
160         
161         Marshaller.marshal(this, handler);
162     } //-- void marshal(org.xml.sax.ContentHandler)
163

164     /**
165      * Method removeAllMetricProperty
166      */

167     public void removeAllMetricProperty()
168     {
169         _metricPropertyList.removeAllElements();
170     } //-- void removeAllMetricProperty()
171

172     /**
173      * Method removeMetricProperty
174      *
175      * @param index
176      */

177     public com.calipso.reportgenerator.reportdefinitions.MetricProperty removeMetricProperty(int index)
178     {
179         java.lang.Object JavaDoc obj = _metricPropertyList.elementAt(index);
180         _metricPropertyList.removeElementAt(index);
181         return (com.calipso.reportgenerator.reportdefinitions.MetricProperty) obj;
182     } //-- com.calipso.reportgenerator.reportdefinitions.MetricProperty removeMetricProperty(int)
183

184     /**
185      * Method setMetricProperty
186      *
187      * @param index
188      * @param vMetricProperty
189      */

190     public void setMetricProperty(int index, com.calipso.reportgenerator.reportdefinitions.MetricProperty vMetricProperty)
191         throws java.lang.IndexOutOfBoundsException JavaDoc
192     {
193         //-- check bounds for index
194
if ((index < 0) || (index > _metricPropertyList.size())) {
195             throw new IndexOutOfBoundsException JavaDoc();
196         }
197         _metricPropertyList.setElementAt(vMetricProperty, index);
198     } //-- void setMetricProperty(int, com.calipso.reportgenerator.reportdefinitions.MetricProperty)
199

200     /**
201      * Method setMetricProperty
202      *
203      * @param metricPropertyArray
204      */

205     public void setMetricProperty(com.calipso.reportgenerator.reportdefinitions.MetricProperty[] metricPropertyArray)
206     {
207         //-- copy array
208
_metricPropertyList.removeAllElements();
209         for (int i = 0; i < metricPropertyArray.length; i++) {
210             _metricPropertyList.addElement(metricPropertyArray[i]);
211         }
212     } //-- void setMetricProperty(com.calipso.reportgenerator.reportdefinitions.MetricProperty)
213

214     /**
215      * Method unmarshal
216      *
217      * @param reader
218      */

219     public static com.calipso.reportgenerator.reportdefinitions.MetricProperties unmarshal(java.io.Reader JavaDoc reader)
220         throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
221     {
222         return (com.calipso.reportgenerator.reportdefinitions.MetricProperties) Unmarshaller.unmarshal(com.calipso.reportgenerator.reportdefinitions.MetricProperties.class, reader);
223     } //-- com.calipso.reportgenerator.reportdefinitions.MetricProperties unmarshal(java.io.Reader)
224

225     /**
226      * Method validate
227      */

228     public void validate()
229         throws org.exolab.castor.xml.ValidationException
230     {
231         org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();
232         validator.validate(this);
233     } //-- void validate()
234

235 }
236
Popular Tags