7.0 Action Request System Java API

com.remedy.arsys.api
Class COMMethodParmInfo

java.lang.Object
  extended bycom.remedy.arsys.api.COMMethodParmInfo
All Implemented Interfaces:
java.lang.Cloneable

public class COMMethodParmInfo
extends java.lang.Object
implements java.lang.Cloneable

The COMMethodParmInfo class specifies the parameters used in COMValueInfo.


Constructor Summary
COMMethodParmInfo()
          constructor
COMMethodParmInfo(java.lang.String parmName, long parmType, COMValueInfo parmValue)
           
 
Method Summary
 java.lang.Object clone()
          Clone implementation that returns an Object with data cloned from self
 boolean equals(java.lang.Object anObject)
          Use this method for checking equality.
 java.lang.String getParmName()
          Returns name of the parameter.
 long getParmType()
          Returns data type of the parameter.
 COMValueInfo getParmValue()
          Returns value of the parameter, specified by using the COMValueInfo class.
 int hashCode()
          Returns the hash code value for this instance of the current class.
 void setParmName(java.lang.String parmName)
          Sets name of the parameter.
 void setParmType(long parmType)
          Sets data type of the parameter.
 void setParmValue(COMValueInfo parmValue)
          Sets value of the parameter, specified by using the COMValueInfo class.
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

COMMethodParmInfo

public COMMethodParmInfo()
constructor


COMMethodParmInfo

public COMMethodParmInfo(java.lang.String parmName,
                         long parmType,
                         COMValueInfo parmValue)
Method Detail

getParmName

public java.lang.String getParmName()
Returns name of the parameter.


setParmName

public void setParmName(java.lang.String parmName)
Sets name of the parameter.


getParmType

public long getParmType()
Returns data type of the parameter. Possible values are all OLE variant types.


setParmType

public void setParmType(long parmType)
Sets data type of the parameter. Possible values are all OLE variant types.


getParmValue

public COMValueInfo getParmValue()
Returns value of the parameter, specified by using the COMValueInfo class.


setParmValue

public void setParmValue(COMValueInfo parmValue)
Sets value of the parameter, specified by using the COMValueInfo class.


clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Clone implementation that returns an Object with data cloned from self

Throws:
java.lang.CloneNotSupportedException

equals

public boolean equals(java.lang.Object anObject)
Use this method for checking equality. The result is true only if the argument is not null, is of same type and represents the same content.


hashCode

public int hashCode()
Returns the hash code value for this instance of the current class. This method is supported as required by the general contract of Object.hashCode, for the benefit of hash tables such as those provided by java.util.Hashtable.


7.0 Action Request System Java API