|
AR System Java API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.bmc.arsys.api.COMValueInfo
public class COMValueInfo
The COMValueInfo
class is used to define the method and parameter values in the OLE Automation active
link action.
Constructor Summary | |
---|---|
COMValueInfo()
constructor |
|
COMValueInfo(String valueIId,
int transId,
int valueType,
int fieldId,
Value value)
|
Method Summary | |
---|---|
Object |
clone()
Clone implementation that returns an Object with data cloned from self |
boolean |
equals(Object obj)
Use this method for checking equality between the current object and the provided one. |
int |
getFieldId()
Returns union that defines the field ID. |
int |
getTransId()
Returns the Transient ID that links a method that takes another method as a parameter to the method that is used as that parameter. |
Value |
getValue()
Returns union that represents the field value. |
String |
getValueIId()
When used with return value of a method, returns the ID of the interface returned by the method. |
int |
getValueType()
Returns integer specifying the type of value represented by the structure. |
int |
hashCode()
Returns the hash code value for this instance of the current class. |
void |
setFieldId(int fieldId)
Sets union that defines the field ID. |
void |
setTransId(int transId)
Sets the Transient ID that links a method that takes another method as a parameter to the method that is used as that parameter. |
void |
setValue(Value value)
Sets union that represents the field value. |
void |
setValueIId(String valueIId)
When used to define the return value of a method, sets the ID of the interface returned by the method. |
void |
setValueType(int valueType)
Sets integer specifying the type of value represented by the structure. |
String |
toString()
Returns a string description of the object. |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public COMValueInfo()
public COMValueInfo(String valueIId, int transId, int valueType, int fieldId, Value value)
Method Detail |
---|
public int getFieldId()
public void setFieldId(int fieldId)
Constants.AR_COM_PARM_FIELDID
, this is the ID of the field to
set to the return value of this method or the field to pass as this parameter.
public Value getValue()
public void setValue(Value value)
Constants.AR_COM_PARM_VALUE
, this is the value to pass
as this parameter, specified by using the Value
class.
public String getValueIId()
public void setValueIId(String valueIId)
public int getTransId()
public void setTransId(int transId)
Value
class that defines the return value for Method B as you do for the class that defines the parameter
value of Method A.
public int getValueType()
public void setValueType(int valueType)
AR_COM_METHOD_NULL
, set the other members of the structure to NULL or 0.
valueType
- Possible values include the following:
Constants.AR_COM_METHOD_NULL
Method return value
Constants.AR_COM_METHOD_FIELDID
Method return value
Constants.AR_COM_PARM_NULL
Parameter return value
Constants.AR_COM_PARM_FIELDID
Parameter return value
Constants.AR_COM_PARM_VALUE
Parameter return value
public Object clone() throws CloneNotSupportedException
clone
in class Object
CloneNotSupportedException
public boolean equals(Object obj)
equals
in class Object
obj
- the object that we are comparing to
public int hashCode()
hashCode
in class Object
public String toString()
toString
in class Object
|
AR System Java API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |