7.0 Action Request System Java API

com.remedy.arsys.api
Class RealLimitInfo

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

public class RealLimitInfo
extends FieldLimitInfo
implements java.lang.Cloneable

The RealLimitInfo class defines the value limits for a real number(DataType.REAL) field.


Constructor Summary
RealLimitInfo(double low, double high, int precision)
          Constructs a new RealLimitInfo object
 
Method Summary
 java.lang.Object clone()
          Makes a deep copy of the object.
 double getHighRange()
          Returns the upper-range limit.
 double getLowRange()
          Returns the lower-range limit.
 int getPrecision()
          Returns the display precision.
 void setHighRange(double high)
          Sets the upper-range limit.
 void setLowRange(double low)
          Sets the lower-range limit.
 void setPrecision(int precision)
          Sets the display precision.
 
Methods inherited from class com.remedy.arsys.api.FieldLimitInfo
getDataType
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RealLimitInfo

public RealLimitInfo(double low,
                     double high,
                     int precision)
Constructs a new RealLimitInfo object

Parameters:
low - Lower-range limit.
high - Upper-range limit.
precision - Display precision.
Method Detail

getLowRange

public double getLowRange()
Returns the lower-range limit.


getHighRange

public double getHighRange()
Returns the upper-range limit.


getPrecision

public int getPrecision()
Returns the display precision.


setLowRange

public void setLowRange(double low)
Sets the lower-range limit.


setHighRange

public void setHighRange(double high)
Sets the upper-range limit.


setPrecision

public void setPrecision(int precision)
Sets the display precision.


clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Makes a deep copy of the object.

Overrides:
clone in class FieldLimitInfo
Throws:
java.lang.CloneNotSupportedException

7.0 Action Request System Java API