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 ActionDefinitions implements java.io.Serializable { 32 33 34 38 41 private java.util.Vector _actionDefinitionList; 42 43 44 48 public ActionDefinitions() { 49 super(); 50 _actionDefinitionList = new Vector (); 51 } 53 54 58 63 public void addActionDefinition(com.calipso.reportgenerator.reportdefinitions.ActionDefinition vActionDefinition) 64 throws java.lang.IndexOutOfBoundsException 65 { 66 _actionDefinitionList.addElement(vActionDefinition); 67 } 69 75 public void addActionDefinition(int index, com.calipso.reportgenerator.reportdefinitions.ActionDefinition vActionDefinition) 76 throws java.lang.IndexOutOfBoundsException 77 { 78 _actionDefinitionList.insertElementAt(vActionDefinition, index); 79 } 81 84 public java.util.Enumeration enumerateActionDefinition() 85 { 86 return _actionDefinitionList.elements(); 87 } 89 94 public com.calipso.reportgenerator.reportdefinitions.ActionDefinition getActionDefinition(int index) 95 throws java.lang.IndexOutOfBoundsException 96 { 97 if ((index < 0) || (index > _actionDefinitionList.size())) { 99 throw new IndexOutOfBoundsException (); 100 } 101 102 return (com.calipso.reportgenerator.reportdefinitions.ActionDefinition) _actionDefinitionList.elementAt(index); 103 } 105 108 public com.calipso.reportgenerator.reportdefinitions.ActionDefinition[] getActionDefinition() 109 { 110 int size = _actionDefinitionList.size(); 111 com.calipso.reportgenerator.reportdefinitions.ActionDefinition[] mArray = new com.calipso.reportgenerator.reportdefinitions.ActionDefinition[size]; 112 for (int index = 0; index < size; index++) { 113 mArray[index] = (com.calipso.reportgenerator.reportdefinitions.ActionDefinition) _actionDefinitionList.elementAt(index); 114 } 115 return mArray; 116 } 118 121 public int getActionDefinitionCount() 122 { 123 return _actionDefinitionList.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 169 public com.calipso.reportgenerator.reportdefinitions.ActionDefinition removeActionDefinition(int index) 170 { 171 java.lang.Object obj = _actionDefinitionList.elementAt(index); 172 _actionDefinitionList.removeElementAt(index); 173 return (com.calipso.reportgenerator.reportdefinitions.ActionDefinition) obj; 174 } 176 179 public void removeAllActionDefinition() 180 { 181 _actionDefinitionList.removeAllElements(); 182 } 184 190 public void setActionDefinition(int index, com.calipso.reportgenerator.reportdefinitions.ActionDefinition vActionDefinition) 191 throws java.lang.IndexOutOfBoundsException 192 { 193 if ((index < 0) || (index > _actionDefinitionList.size())) { 195 throw new IndexOutOfBoundsException (); 196 } 197 _actionDefinitionList.setElementAt(vActionDefinition, index); 198 } 200 205 public void setActionDefinition(com.calipso.reportgenerator.reportdefinitions.ActionDefinition[] actionDefinitionArray) 206 { 207 _actionDefinitionList.removeAllElements(); 209 for (int i = 0; i < actionDefinitionArray.length; i++) { 210 _actionDefinitionList.addElement(actionDefinitionArray[i]); 211 } 212 } 214 219 public static com.calipso.reportgenerator.reportdefinitions.ActionDefinitions unmarshal(java.io.Reader reader) 220 throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException 221 { 222 return (com.calipso.reportgenerator.reportdefinitions.ActionDefinitions) Unmarshaller.unmarshal(com.calipso.reportgenerator.reportdefinitions.ActionDefinitions.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 |