7.0 Action Request System Java API

com.remedy.arsys.api
Class ColumnLimitInfo

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

public class ColumnLimitInfo
extends FieldLimitInfo
implements java.lang.Cloneable

The ColumnLimitInfo class represents the value limits for a column(DataType.COLUMN) field.


Constructor Summary
ColumnLimitInfo()
          Constructs a new ColumnLimitInfo object.
ColumnLimitInfo(FieldID parent, FieldID data, int dataSource, int length)
           
 
Method Summary
 java.lang.Object clone()
          Clone implementation that returns an Object with data cloned from self.
 int getColumnLength()
          Returns the maximum column length to display.
 FieldID getDataField()
          Returns the FieldID of the data field.
 int getDataSource()
          Returns the data source.
 FieldID getParent()
          Returns the FieldID of the parent field the column belongs to.
 void setColumnLength(int length)
          Sets the maximum column length to display.
 void setDataField(FieldID data)
          Sets the FieldID of the data field.
 void setDataSource(int dataSource)
          Sets the data source.
 void setParent(FieldID parent)
          Sets the FieldID of the parent field the column belongs to.
 
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

ColumnLimitInfo

public ColumnLimitInfo()
Constructs a new ColumnLimitInfo object.


ColumnLimitInfo

public ColumnLimitInfo(FieldID parent,
                       FieldID data,
                       int dataSource,
                       int length)
Method Detail

getParent

public FieldID getParent()
Returns the FieldID of the parent field the column belongs to.


getDataField

public FieldID getDataField()
Returns the FieldID of the data field.


getDataSource

public int getDataSource()
Returns the data source. You can return the following constant values:


getColumnLength

public int getColumnLength()
Returns the maximum column length to display.


setParent

public void setParent(FieldID parent)
Sets the FieldID of the parent field the column belongs to.


setDataField

public void setDataField(FieldID data)
Sets the FieldID of the data field.


setDataSource

public void setDataSource(int dataSource)
Sets the data source.


setColumnLength

public void setColumnLength(int length)
Sets the maximum column length to display.


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 FieldLimitInfo
Throws:
java.lang.CloneNotSupportedException

7.0 Action Request System Java API