public class ActionEvent extends Object implements Serializable
Constructor and Description |
---|
ActionEvent() |
Modifier and Type | Method and Description |
---|---|
void |
addAssignment(Assignment vAssignment) |
void |
addAssignment(int index,
Assignment vAssignment) |
void |
deleteAddAllParms() |
void |
deleteForEachResult() |
Enumeration<Assignment> |
enumerateAssignment()
Method enumerateAssignment.
|
boolean |
equals(Object obj)
Overrides the java.lang.Object.equals method.
|
boolean |
getAddAllParms()
Returns the value of field 'addAllParms'.
|
Assignment[] |
getAssignment()
Method getAssignment.Returns the contents of the collection
in an Array.
|
Assignment |
getAssignment(int index)
Method getAssignment.
|
List<Assignment> |
getAssignmentCollection()
Method getAssignmentCollection.Returns a reference to
'_assignmentList'.
|
int |
getAssignmentCount()
Method getAssignmentCount.
|
boolean |
getForEachResult()
Returns the value of field 'forEachResult'.
|
String |
getName()
Returns the value of field 'name'.
|
boolean |
hasAddAllParms()
Method hasAddAllParms.
|
boolean |
hasForEachResult()
Method hasForEachResult.
|
int |
hashCode()
Overrides the java.lang.Object.hashCode method.
|
boolean |
isAddAllParms()
Returns the value of field 'addAllParms'.
|
boolean |
isForEachResult()
Returns the value of field 'forEachResult'.
|
boolean |
isValid()
Method isValid.
|
Iterator<Assignment> |
iterateAssignment()
Method iterateAssignment.
|
void |
marshal(ContentHandler handler) |
void |
marshal(Writer out) |
void |
removeAllAssignment() |
boolean |
removeAssignment(Assignment vAssignment)
Method removeAssignment.
|
Assignment |
removeAssignmentAt(int index)
Method removeAssignmentAt.
|
void |
setAddAllParms(boolean addAllParms)
Sets the value of field 'addAllParms'.
|
void |
setAssignment(Assignment[] vAssignmentArray) |
void |
setAssignment(int index,
Assignment vAssignment) |
void |
setAssignment(List<Assignment> vAssignmentList)
Sets the value of '_assignmentList' by copying the given
Vector.
|
void |
setAssignmentCollection(List<Assignment> assignmentList)
Deprecated.
|
void |
setForEachResult(boolean forEachResult)
Sets the value of field 'forEachResult'.
|
void |
setName(String name)
Sets the value of field 'name'.
|
static ActionEvent |
unmarshal(Reader reader)
Method unmarshal.
|
void |
validate() |
public void addAssignment(Assignment vAssignment) throws IndexOutOfBoundsException
vAssignment
- IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void addAssignment(int index, Assignment vAssignment) throws IndexOutOfBoundsException
index
- vAssignment
- IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void deleteAddAllParms()
public void deleteForEachResult()
public Enumeration<Assignment> enumerateAssignment()
public boolean equals(Object obj)
public boolean getAddAllParms()
public Assignment getAssignment(int index) throws IndexOutOfBoundsException
index
- IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic Assignment[] getAssignment()
Note: Just in case the collection contents are changing in another thread, we pass a 0-length Array of the correct type into the API call. This way we know that the Array returned is of exactly the correct length.
public List<Assignment> getAssignmentCollection()
public int getAssignmentCount()
public boolean getForEachResult()
public String getName()
public boolean hasAddAllParms()
public boolean hasForEachResult()
public int hashCode()
The following steps came from Effective Java Programming Language Guide by Joshua Bloch, Chapter 3
public boolean isAddAllParms()
public boolean isForEachResult()
public boolean isValid()
public Iterator<Assignment> iterateAssignment()
public void marshal(Writer out) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
out
- org.exolab.castor.xml.MarshalException
- if object is
null or if any SAXException is thrown during marshalingorg.exolab.castor.xml.ValidationException
- if this
object is an invalid instance according to the schemapublic void marshal(ContentHandler handler) throws IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
handler
- IOException
- if an IOException occurs during
marshalingorg.exolab.castor.xml.ValidationException
- if this
object is an invalid instance according to the schemaorg.exolab.castor.xml.MarshalException
- if object is
null or if any SAXException is thrown during marshalingpublic void removeAllAssignment()
public boolean removeAssignment(Assignment vAssignment)
vAssignment
- public Assignment removeAssignmentAt(int index)
index
- public void setAddAllParms(boolean addAllParms)
addAllParms
- the value of field 'addAllParms'.public void setAssignment(int index, Assignment vAssignment) throws IndexOutOfBoundsException
index
- vAssignment
- IndexOutOfBoundsException
- if the index
given is outside the bounds of the collectionpublic void setAssignment(Assignment[] vAssignmentArray)
vAssignmentArray
- public void setAssignment(List<Assignment> vAssignmentList)
vAssignmentList
- the Vector to copy.public void setAssignmentCollection(List<Assignment> assignmentList)
assignmentList
- the Vector to set.public void setForEachResult(boolean forEachResult)
forEachResult
- the value of field 'forEachResult'.public void setName(String name)
name
- the value of field 'name'.public static ActionEvent unmarshal(Reader reader) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
reader
- org.exolab.castor.xml.MarshalException
- if object is
null or if any SAXException is thrown during marshalingorg.exolab.castor.xml.ValidationException
- if this
object is an invalid instance according to the schemapublic void validate() throws org.exolab.castor.xml.ValidationException
org.exolab.castor.xml.ValidationException
- if this
object is an invalid instance according to the schemaCopyright © 2015. All Rights Reserved.