com.ibm.dse.base
Class ErrorInfo

java.lang.Object
  |
  +--java.util.Dictionary
        |
        +--java.util.Hashtable
              |
              +--com.ibm.dse.base.Hashtable
                    |
                    +--com.ibm.dse.base.ErrorInfo

public class ErrorInfo
extends Hashtable
implements java.io.Serializable

Hashtable of errors detected trying to validate an input object.Each entry of the table will have as key the error code and as value the error message.

See Also:
Serialized Form

Constructor Summary
ErrorInfo(int initialCapacity, float loadFactor, java.lang.Object anInputObject)
          Creates an ErrorInfo object.
ErrorInfo(int initialCapacity, java.lang.Object anInputObject)
          Creates an ErrorInfo object.
ErrorInfo(java.lang.Object anInputObject)
          Creates an ErrorInfo object.
 
Method Summary
 java.lang.Object getInputObject()
          Return the input object, that is the object that was set to the DataElement and was found invalid during the validation process
 void setInputObject(java.lang.Object anInputObject)
          Set the input object, that is the object that is meant to be the value of the DataElement
 
Methods inherited from class com.ibm.dse.base.Hashtable
clone, keyAtValue, removeAll, toString
 
Methods inherited from class java.util.Hashtable
clear, contains, containsKey, containsValue, elements, entrySet, equals, get, hashCode, isEmpty, keys, keySet, put, putAll, rehash, remove, size, values
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ErrorInfo

public ErrorInfo(int initialCapacity,
                 float loadFactor,
                 java.lang.Object anInputObject)
Creates an ErrorInfo object.
Parameters:
initialCapacity - int
loadFactor - float
anInputObject - Object

ErrorInfo

public ErrorInfo(int initialCapacity,
                 java.lang.Object anInputObject)
Creates an ErrorInfo object.
Parameters:
initialCapacity - int
anInputObject - Object

ErrorInfo

public ErrorInfo(java.lang.Object anInputObject)
Creates an ErrorInfo object.
Parameters:
anInputObject - Object
Method Detail

getInputObject

public java.lang.Object getInputObject()
Return the input object, that is the object that was set to the DataElement and was found invalid during the validation process

setInputObject

public void setInputObject(java.lang.Object anInputObject)
Set the input object, that is the object that is meant to be the value of the DataElement
Parameters:
anInputObject - Object