1 7 8 package com.calipso.reportgenerator.reportdefinitions; 9 10 14 import java.io.IOException ; 15 import java.io.Reader ; 16 import java.io.Serializable ; 17 import java.io.Writer ; 18 import java.util.Enumeration ; 19 import java.util.Vector ; 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 ; 25 26 31 public class DimensionDefinitions implements java.io.Serializable { 32 33 34 38 41 private java.util.Vector _dimensionDefinitionList; 42 43 44 48 public DimensionDefinitions() { 49 super(); 50 _dimensionDefinitionList = new Vector (); 51 } 53 54 58 63 public void addDimensionDefinition(com.calipso.reportgenerator.reportdefinitions.DimensionDefinition vDimensionDefinition) 64 throws java.lang.IndexOutOfBoundsException 65 { 66 _dimensionDefinitionList.addElement(vDimensionDefinition); 67 } 69 75 public void addDimensionDefinition(int index, com.calipso.reportgenerator.reportdefinitions.DimensionDefinition vDimensionDefinition) 76 throws java.lang.IndexOutOfBoundsException 77 { 78 _dimensionDefinitionList.insertElementAt(vDimensionDefinition, index); 79 } 81 84 public java.util.Enumeration enumerateDimensionDefinition() 85 { 86 return _dimensionDefinitionList.elements(); 87 } 89 94 public com.calipso.reportgenerator.reportdefinitions.DimensionDefinition getDimensionDefinition(int index) 95 throws java.lang.IndexOutOfBoundsException 96 { 97 if ((index < 0) || (index > _dimensionDefinitionList.size())) { 99 throw new IndexOutOfBoundsException (); 100 } 101 102 return (com.calipso.reportgenerator.reportdefinitions.DimensionDefinition) _dimensionDefinitionList.elementAt(index); 103 } 105 108 public com.calipso.reportgenerator.reportdefinitions.DimensionDefinition[] getDimensionDefinition() 109 { 110 int size = _dimensionDefinitionList.size(); 111 com.calipso.reportgenerator.reportdefinitions.DimensionDefinition[] mArray = new com.calipso.reportgenerator.reportdefinitions.DimensionDefinition[size]; 112 for (int index = 0; index < size; index++) { 113 mArray[index] = (com.calipso.reportgenerator.reportdefinitions.DimensionDefinition) _dimensionDefinitionList.elementAt(index); 114 } 115 return mArray; 116 } 118 121 public int getDimensionDefinitionCount() 122 { 123 return _dimensionDefinitionList.size(); 124 } 126 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 } 140 145 public void marshal(java.io.Writer out) 146 throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException 147 { 148 149 Marshaller.marshal(this, out); 150 } 152 157 public void marshal(org.xml.sax.ContentHandler handler) 158 throws java.io.IOException , org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException 159 { 160 161 Marshaller.marshal(this, handler); 162 } 164 167 public void removeAllDimensionDefinition() 168 { 169 _dimensionDefinitionList.removeAllElements(); 170 } 172 177 public com.calipso.reportgenerator.reportdefinitions.DimensionDefinition removeDimensionDefinition(int index) 178 { 179 java.lang.Object obj = _dimensionDefinitionList.elementAt(index); 180 _dimensionDefinitionList.removeElementAt(index); 181 return (com.calipso.reportgenerator.reportdefinitions.DimensionDefinition) obj; 182 } 184 190 public void setDimensionDefinition(int index, com.calipso.reportgenerator.reportdefinitions.DimensionDefinition vDimensionDefinition) 191 throws java.lang.IndexOutOfBoundsException 192 { 193 if ((index < 0) || (index > _dimensionDefinitionList.size())) { 195 throw new IndexOutOfBoundsException (); 196 } 197 _dimensionDefinitionList.setElementAt(vDimensionDefinition, index); 198 } 200 205 public void setDimensionDefinition(com.calipso.reportgenerator.reportdefinitions.DimensionDefinition[] dimensionDefinitionArray) 206 { 207 _dimensionDefinitionList.removeAllElements(); 209 for (int i = 0; i < dimensionDefinitionArray.length; i++) { 210 _dimensionDefinitionList.addElement(dimensionDefinitionArray[i]); 211 } 212 } 214 219 public static com.calipso.reportgenerator.reportdefinitions.DimensionDefinitions unmarshal(java.io.Reader reader) 220 throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException 221 { 222 return (com.calipso.reportgenerator.reportdefinitions.DimensionDefinitions) Unmarshaller.unmarshal(com.calipso.reportgenerator.reportdefinitions.DimensionDefinitions.class, reader); 223 } 225 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 } 235 } 236 | Popular Tags |