001: /*
002: * This class was automatically generated with
003: * <a href="http://www.castor.org">Castor 0.9.4.3</a>, using an XML
004: * Schema.
005: * $Id$
006: */
007:
008: package com.calipso.reportgenerator.reportdefinitions;
009:
010: //---------------------------------/
011: //- Imported classes and packages -/
012: //---------------------------------/
013:
014: import java.io.IOException;
015: import java.io.Reader;
016: import java.io.Serializable;
017: import java.io.Writer;
018: import java.util.Enumeration;
019: import java.util.Vector;
020: import org.exolab.castor.xml.MarshalException;
021: import org.exolab.castor.xml.Marshaller;
022: import org.exolab.castor.xml.Unmarshaller;
023: import org.exolab.castor.xml.ValidationException;
024: import org.xml.sax.ContentHandler;
025:
026: /**
027: * Class MetricSourceDefinitions.
028: *
029: * @version $Revision$ $Date$
030: */
031: public class MetricSourceDefinitions implements java.io.Serializable {
032:
033: //--------------------------/
034: //- Class/Member Variables -/
035: //--------------------------/
036:
037: /**
038: * Field _metricSourceDefinitionList
039: */
040: private java.util.Vector _metricSourceDefinitionList;
041:
042: //----------------/
043: //- Constructors -/
044: //----------------/
045:
046: public MetricSourceDefinitions() {
047: super ();
048: _metricSourceDefinitionList = new Vector();
049: } //-- com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinitions()
050:
051: //-----------/
052: //- Methods -/
053: //-----------/
054:
055: /**
056: * Method addMetricSourceDefinition
057: *
058: * @param vMetricSourceDefinition
059: */
060: public void addMetricSourceDefinition(
061: com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition vMetricSourceDefinition)
062: throws java.lang.IndexOutOfBoundsException {
063: _metricSourceDefinitionList.addElement(vMetricSourceDefinition);
064: } //-- void addMetricSourceDefinition(com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition)
065:
066: /**
067: * Method addMetricSourceDefinition
068: *
069: * @param index
070: * @param vMetricSourceDefinition
071: */
072: public void addMetricSourceDefinition(
073: int index,
074: com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition vMetricSourceDefinition)
075: throws java.lang.IndexOutOfBoundsException {
076: _metricSourceDefinitionList.insertElementAt(
077: vMetricSourceDefinition, index);
078: } //-- void addMetricSourceDefinition(int, com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition)
079:
080: /**
081: * Method enumerateMetricSourceDefinition
082: */
083: public java.util.Enumeration enumerateMetricSourceDefinition() {
084: return _metricSourceDefinitionList.elements();
085: } //-- java.util.Enumeration enumerateMetricSourceDefinition()
086:
087: /**
088: * Method getMetricSourceDefinition
089: *
090: * @param index
091: */
092: public com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition getMetricSourceDefinition(
093: int index) throws java.lang.IndexOutOfBoundsException {
094: //-- check bounds for index
095: if ((index < 0) || (index > _metricSourceDefinitionList.size())) {
096: throw new IndexOutOfBoundsException();
097: }
098:
099: return (com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition) _metricSourceDefinitionList
100: .elementAt(index);
101: } //-- com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition getMetricSourceDefinition(int)
102:
103: /**
104: * Method getMetricSourceDefinition
105: */
106: public com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition[] getMetricSourceDefinition() {
107: int size = _metricSourceDefinitionList.size();
108: com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition[] mArray = new com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition[size];
109: for (int index = 0; index < size; index++) {
110: mArray[index] = (com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition) _metricSourceDefinitionList
111: .elementAt(index);
112: }
113: return mArray;
114: } //-- com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition[] getMetricSourceDefinition()
115:
116: /**
117: * Method getMetricSourceDefinitionCount
118: */
119: public int getMetricSourceDefinitionCount() {
120: return _metricSourceDefinitionList.size();
121: } //-- int getMetricSourceDefinitionCount()
122:
123: /**
124: * Method isValid
125: */
126: public boolean isValid() {
127: try {
128: validate();
129: } catch (org.exolab.castor.xml.ValidationException vex) {
130: return false;
131: }
132: return true;
133: } //-- boolean isValid()
134:
135: /**
136: * Method marshal
137: *
138: * @param out
139: */
140: public void marshal(java.io.Writer out)
141: throws org.exolab.castor.xml.MarshalException,
142: org.exolab.castor.xml.ValidationException {
143:
144: Marshaller.marshal(this , out);
145: } //-- void marshal(java.io.Writer)
146:
147: /**
148: * Method marshal
149: *
150: * @param handler
151: */
152: public void marshal(org.xml.sax.ContentHandler handler)
153: throws java.io.IOException,
154: org.exolab.castor.xml.MarshalException,
155: org.exolab.castor.xml.ValidationException {
156:
157: Marshaller.marshal(this , handler);
158: } //-- void marshal(org.xml.sax.ContentHandler)
159:
160: /**
161: * Method removeAllMetricSourceDefinition
162: */
163: public void removeAllMetricSourceDefinition() {
164: _metricSourceDefinitionList.removeAllElements();
165: } //-- void removeAllMetricSourceDefinition()
166:
167: /**
168: * Method removeMetricSourceDefinition
169: *
170: * @param index
171: */
172: public com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition removeMetricSourceDefinition(
173: int index) {
174: java.lang.Object obj = _metricSourceDefinitionList
175: .elementAt(index);
176: _metricSourceDefinitionList.removeElementAt(index);
177: return (com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition) obj;
178: } //-- com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition removeMetricSourceDefinition(int)
179:
180: /**
181: * Method setMetricSourceDefinition
182: *
183: * @param index
184: * @param vMetricSourceDefinition
185: */
186: public void setMetricSourceDefinition(
187: int index,
188: com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition vMetricSourceDefinition)
189: throws java.lang.IndexOutOfBoundsException {
190: //-- check bounds for index
191: if ((index < 0) || (index > _metricSourceDefinitionList.size())) {
192: throw new IndexOutOfBoundsException();
193: }
194: _metricSourceDefinitionList.setElementAt(
195: vMetricSourceDefinition, index);
196: } //-- void setMetricSourceDefinition(int, com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition)
197:
198: /**
199: * Method setMetricSourceDefinition
200: *
201: * @param metricSourceDefinitionArray
202: */
203: public void setMetricSourceDefinition(
204: com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition[] metricSourceDefinitionArray) {
205: //-- copy array
206: _metricSourceDefinitionList.removeAllElements();
207: for (int i = 0; i < metricSourceDefinitionArray.length; i++) {
208: _metricSourceDefinitionList
209: .addElement(metricSourceDefinitionArray[i]);
210: }
211: } //-- void setMetricSourceDefinition(com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinition)
212:
213: /**
214: * Method unmarshal
215: *
216: * @param reader
217: */
218: public static com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinitions unmarshal(
219: java.io.Reader reader)
220: throws org.exolab.castor.xml.MarshalException,
221: org.exolab.castor.xml.ValidationException {
222: return (com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinitions) Unmarshaller
223: .unmarshal(
224: com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinitions.class,
225: reader);
226: } //-- com.calipso.reportgenerator.reportdefinitions.MetricSourceDefinitions unmarshal(java.io.Reader)
227:
228: /**
229: * Method validate
230: */
231: public void validate()
232: throws org.exolab.castor.xml.ValidationException {
233: org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();
234: validator.validate(this );
235: } //-- void validate()
236:
237: }
|