com.remedy.arsys.api
Class MacroParmInfo

java.lang.Object
  |
  +--com.remedy.arsys.api.MacroParmInfo
All Implemented Interfaces:
java.lang.Cloneable

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

The MacroParmInfo class lets you enter a name/value pair of the parameters used in the Run Macro active link action (ActiveLinkMacroInfo).


Constructor Summary
MacroParmInfo()
          constructor
MacroParmInfo(java.lang.String name, java.lang.String value)
           
 
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.
 NameID getName()
          Gets parameter name of macro.
 java.lang.String getValue()
          Gets the value of macro parameter.
 int hashCode()
          This method can be used to populate a hash table.
 void setName(NameID name)
          Sets parameter name of macro.
 void setValue(java.lang.String value)
          Sets the value of macro parameter.
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MacroParmInfo

public MacroParmInfo()
constructor

MacroParmInfo

public MacroParmInfo(java.lang.String name,
                     java.lang.String value)
Method Detail

getName

public NameID getName()
Gets parameter name of macro.

setName

public void setName(NameID name)
Sets parameter name of macro.

getValue

public java.lang.String getValue()
Gets the value of macro parameter.

setValue

public void setValue(java.lang.String value)
Sets the value of macro parameter.

clone

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

equals

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

hashCode

public int hashCode()
This method can be used to populate a hash table. Implicitly used method to test equality of objects.
Overrides:
hashCode in class java.lang.Object