com.xqual.xagent.launcher
Class CParam

java.lang.Object
  extended by com.xqual.xagent.launcher.CParam

public class CParam
extends java.lang.Object

A class representing a launcher parameter WARNING: This is mapped on CFormItem !!! If CFormItem is modified this class must be updated as well !


Constructor Summary
CParam(java.lang.String type, int id, java.lang.String name, java.lang.String value, boolean readOnly)
           
 
Method Summary
 int getId()
          Return the identifier of the application setting
 java.lang.String getName()
          Return the name of the application setting
 java.lang.String getType()
          Return the type of the application setting
 java.lang.String getValue()
          Return the value of the application setting
 boolean isReadOnly()
          Return if the application setting is read-only
 void setValue(java.lang.String value)
          Set the value of the application setting
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CParam

public CParam(java.lang.String type,
              int id,
              java.lang.String name,
              java.lang.String value,
              boolean readOnly)
Parameters:
type - the type of the form item
id - the id of the form item
name - the name of the form item
value - the value of the form item
readOnly - if the form itme is readonly
Method Detail

getName

public java.lang.String getName()
Return the name of the application setting


getType

public java.lang.String getType()
Return the type of the application setting


getId

public int getId()
Return the identifier of the application setting


isReadOnly

public boolean isReadOnly()
Return if the application setting is read-only


getValue

public java.lang.String getValue()
Return the value of the application setting


setValue

public void setValue(java.lang.String value)
Set the value of the application setting