Class LPConfigInfo

java.lang.Object
  extended by LPConfigInfo

public class LPConfigInfo
extends java.lang.Object

This class stores the configuration information for an LP. The information is provided by application programmer in a text file in the following format:
index app_name class_name data

Version:
1.0 (12/2005)
Author:
Yin Xiong

Field Summary
(package private)  java.lang.String LPClassName
          the class name of the LP
(package private)  java.lang.String LPData
          the data for this LP
(package private)  java.lang.String LPIndex
          the index of the LP
(package private)  java.lang.String LPName
          the name of the LP
 
Constructor Summary
LPConfigInfo(java.lang.String ids, java.lang.String name, java.lang.String cname, java.lang.String dat)
          constructs a LPInfo object
 
Method Summary
 java.lang.String getLPClassName()
          Gets the class name of the LP
 java.lang.String getLPData()
          Gets the data of the LP
 java.lang.String getLPIndex()
          Gets index of the LP
 java.lang.String getLPName()
          Gets the name of the LP
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

LPIndex

java.lang.String LPIndex
the index of the LP


LPName

java.lang.String LPName
the name of the LP


LPClassName

java.lang.String LPClassName
the class name of the LP


LPData

java.lang.String LPData
the data for this LP

Constructor Detail

LPConfigInfo

public LPConfigInfo(java.lang.String ids,
                    java.lang.String name,
                    java.lang.String cname,
                    java.lang.String dat)
constructs a LPInfo object

Method Detail

getLPIndex

public java.lang.String getLPIndex()
Gets index of the LP


getLPName

public java.lang.String getLPName()
Gets the name of the LP


getLPClassName

public java.lang.String getLPClassName()
Gets the class name of the LP


getLPData

public java.lang.String getLPData()
Gets the data of the LP


toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object