com.jstatcom.project
Class OutputData

java.lang.Object
  extended by com.jstatcom.project.OutputData

public final class OutputData
extends java.lang.Object

Holds data that is represented by an element in the OutputList.

Author:
Markus Kraetzig

Field Summary
 java.util.Date date
          Date on instantiation of this OutputData object.
 java.lang.String name
          Identifier for underlying output, typically the name of the PCall object.
 java.lang.String output
          String holding the output.
static javolution.xml.XmlFormat<OutputData> OutputData_XML
          XML format field for (de)serialization.
 boolean selected
          The selected property, used by OutputList to set selection after sorting the elements.
 
Constructor Summary
OutputData(java.lang.String name, java.lang.String output)
          Represents an output entry with a name and a string holding the actual output from a computation.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

output

public final java.lang.String output
String holding the output.


date

public final java.util.Date date
Date on instantiation of this OutputData object.


name

public final java.lang.String name
Identifier for underlying output, typically the name of the PCall object.


selected

public boolean selected
The selected property, used by OutputList to set selection after sorting the elements.


OutputData_XML

public static final javolution.xml.XmlFormat<OutputData> OutputData_XML
XML format field for (de)serialization.

Constructor Detail

OutputData

public OutputData(java.lang.String name,
                  java.lang.String output)
Represents an output entry with a name and a string holding the actual output from a computation.

Parameters:
name - identifier for the corresponding output
output - holds text information
Throws:
java.lang.IllegalArgumentException - if (name == null || name.length() == 0)
Method Detail

toString

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