wt.dataops.objectcol.resolution
Class MethodParameter

java.lang.Object
  extended bywt.dataops.objectcol.resolution.MethodParameter
All Implemented Interfaces:
Externalizable, Serializable

public class MethodParameter
extends Object
implements Externalizable



Supported API: false

Extendable: false

See Also:
Serialized Form

Field Summary
private static String CLASSNAME
           
private  Object defaultValue
           
static long EXTERNALIZATION_VERSION_UID
           
private  String inputName
           
protected static long OLD_FORMAT_VERSION_UID
           
private  boolean out
           
private  Class paramType
           
private  boolean primitive
           
private  boolean required
           
private static String RESOURCE
           
private  boolean seed
           
(package private) static long serialVersionUID
           
 
Constructor Summary
MethodParameter()
           
 
Method Summary
 Object getDefaultValue()
          Gets the value of the attribute: defaultValue.
 String getInputName()
          Gets the value of the attribute: inputName.
 Class getParamType()
          Gets the value of the attribute: paramType.
private  void inputNameValidate(String a_InputName)
           
 boolean isOut()
          Gets the value of the attribute: out.
 boolean isPrimitive()
          Gets the value of the attribute: primitive.
 boolean isRequired()
          Gets the value of the attribute: required.
 boolean isSeed()
          Gets the value of the attribute: seed.
 void readExternal(ObjectInput input)
          Reads the non-transient fields of this class from an external source.
private  boolean readOldVersion(ObjectInput input, long readSerialVersionUID, boolean passThrough, boolean superDone)
          Reads the non-transient fields of this class from an external source, which is not the current version.
protected  boolean readVersion(MethodParameter thisObject, ObjectInput input, long readSerialVersionUID, boolean passThrough, boolean superDone)
          Reads the non-transient fields of this class from an external source.
 void setDefaultValue(Object a_DefaultValue)
          Sets the value of the attribute: defaultValue.
 void setInputName(String a_InputName)
          Sets the value of the attribute: inputName.
 void setOut(boolean a_Out)
          Sets the value of the attribute: out.
 void setParamType(Class a_ParamType)
          Sets the value of the attribute: paramType.
 void setPrimitive(boolean a_Primitive)
          Sets the value of the attribute: primitive.
 void setRequired(boolean a_Required)
          Sets the value of the attribute: required.
 void setSeed(boolean a_Seed)
          Sets the value of the attribute: seed.
 void writeExternal(ObjectOutput output)
          Writes the non-transient fields of this class to an external source.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

RESOURCE

private static final String RESOURCE
See Also:
Constant Field Values

CLASSNAME

private static final String CLASSNAME

paramType

private Class paramType

primitive

private boolean primitive

inputName

private String inputName

required

private boolean required

defaultValue

private Object defaultValue

seed

private boolean seed

out

private boolean out

serialVersionUID

static final long serialVersionUID
See Also:
Constant Field Values

EXTERNALIZATION_VERSION_UID

public static final long EXTERNALIZATION_VERSION_UID
See Also:
Constant Field Values

OLD_FORMAT_VERSION_UID

protected static final long OLD_FORMAT_VERSION_UID
See Also:
Constant Field Values
Constructor Detail

MethodParameter

public MethodParameter()
Method Detail

writeExternal

public void writeExternal(ObjectOutput output)
                   throws IOException
Writes the non-transient fields of this class to an external source.

Supported API: false

Specified by:
writeExternal in interface Externalizable
Parameters:
output -
Throws:
IOException

readExternal

public void readExternal(ObjectInput input)
                  throws IOException,
                         ClassNotFoundException
Reads the non-transient fields of this class from an external source.

Supported API: false

Specified by:
readExternal in interface Externalizable
Parameters:
input -
Throws:
IOException
ClassNotFoundException

readVersion

protected boolean readVersion(MethodParameter thisObject,
                              ObjectInput input,
                              long readSerialVersionUID,
                              boolean passThrough,
                              boolean superDone)
                       throws IOException,
                              ClassNotFoundException
Reads the non-transient fields of this class from an external source.

Supported API: false

Parameters:
thisObject -
input -
readSerialVersionUID -
passThrough -
superDone -
Returns:
boolean
Throws:
IOException
ClassNotFoundException

readOldVersion

private boolean readOldVersion(ObjectInput input,
                               long readSerialVersionUID,
                               boolean passThrough,
                               boolean superDone)
                        throws IOException,
                               ClassNotFoundException
Reads the non-transient fields of this class from an external source, which is not the current version.

Parameters:
input -
readSerialVersionUID -
passThrough -
superDone -
Returns:
boolean
Throws:
IOException
ClassNotFoundException

getParamType

public Class getParamType()
Gets the value of the attribute: paramType.

Supported API: false

Returns:
Class

setParamType

public void setParamType(Class a_ParamType)
                  throws WTPropertyVetoException
Sets the value of the attribute: paramType.

Supported API: false

Parameters:
a_ParamType -
Throws:
WTPropertyVetoException

isPrimitive

public boolean isPrimitive()
Gets the value of the attribute: primitive.

Supported API: false

Returns:
boolean

setPrimitive

public void setPrimitive(boolean a_Primitive)
                  throws WTPropertyVetoException
Sets the value of the attribute: primitive.

Supported API: false

Parameters:
a_Primitive -
Throws:
WTPropertyVetoException

getInputName

public String getInputName()
Gets the value of the attribute: inputName.

Supported API: false

Returns:
String

setInputName

public void setInputName(String a_InputName)
                  throws WTPropertyVetoException
Sets the value of the attribute: inputName.

Supported API: false

Parameters:
a_InputName -
Throws:
WTPropertyVetoException

inputNameValidate

private void inputNameValidate(String a_InputName)
                        throws WTPropertyVetoException
Parameters:
a_InputName -
Throws:
WTPropertyVetoException

isRequired

public boolean isRequired()
Gets the value of the attribute: required.

Supported API: false

Returns:
boolean

setRequired

public void setRequired(boolean a_Required)
                 throws WTPropertyVetoException
Sets the value of the attribute: required.

Supported API: false

Parameters:
a_Required -
Throws:
WTPropertyVetoException

getDefaultValue

public Object getDefaultValue()
Gets the value of the attribute: defaultValue.

Supported API: false

Returns:
Object

setDefaultValue

public void setDefaultValue(Object a_DefaultValue)
                     throws WTPropertyVetoException
Sets the value of the attribute: defaultValue.

Supported API: false

Parameters:
a_DefaultValue -
Throws:
WTPropertyVetoException

isSeed

public boolean isSeed()
Gets the value of the attribute: seed.

Supported API: false

Returns:
boolean

setSeed

public void setSeed(boolean a_Seed)
             throws WTPropertyVetoException
Sets the value of the attribute: seed.

Supported API: false

Parameters:
a_Seed -
Throws:
WTPropertyVetoException

isOut

public boolean isOut()
Gets the value of the attribute: out.

Supported API: false

Returns:
boolean

setOut

public void setOut(boolean a_Out)
            throws WTPropertyVetoException
Sets the value of the attribute: out.

Supported API: false

Parameters:
a_Out -
Throws:
WTPropertyVetoException