|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.AbstractIOObject
edu.udo.cs.yale.operator.ResultObjectAdapter
public abstract class ResultObjectAdapter
An adapter class for the interface ResultObject
. Implements most
methods and can be used if the subclass does not need to extend other
classes. The method toResultString()
delivers the return value of
Object.toString()
. The visualization components for the graphical user
interface is simply the HTML representation of the result string. If a
subclass also implements Saveable
an action for Saving will
automatically be added to the actions list.
Field Summary | |
---|---|
private java.util.List<javax.swing.Action> |
actions
|
Constructor Summary | |
---|---|
ResultObjectAdapter()
|
Method Summary | |
---|---|
protected void |
addAction(javax.swing.Action a)
Adds an action to the list of Java Swing Actions which will shown in the visualization component. |
java.util.List<javax.swing.Action> |
getActions()
Returns a list of all actions which can be performed for this result object. |
java.lang.String |
getName()
The default implementation returns the classname without package. |
java.awt.Component |
getVisualisationComponent(IOContainer container)
Returns a label that displays the toResultString() result
encoded as html. |
static java.lang.String |
toHTML(java.lang.String string)
Encodes the given String as HTML. |
java.lang.String |
toResultString()
The default implementation simply returns the result of the method Object.toString() . |
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject |
---|
copy, read, read, read, write, write |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface edu.udo.cs.yale.operator.IOObject |
---|
copy, write, write |
Field Detail |
---|
private java.util.List<javax.swing.Action> actions
Constructor Detail |
---|
public ResultObjectAdapter()
Method Detail |
---|
public java.lang.String getName()
getName
in interface ResultObject
protected void addAction(javax.swing.Action a)
public java.util.List<javax.swing.Action> getActions()
getActions
in interface ResultObject
public java.lang.String toResultString()
Object.toString()
.
toResultString
in interface ResultObject
public java.awt.Component getVisualisationComponent(IOContainer container)
toResultString()
result
encoded as html. Please note that the returned label is already enclosed
by a scroll pane. If you overwrite this method you should again ensure that
the returned component is scrollable. The given container is totally ignored.
getVisualisationComponent
in interface ResultObject
public static java.lang.String toHTML(java.lang.String string)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |