edu.udo.cs.yale.operator
Class ContainerModel

java.lang.Object
  extended by edu.udo.cs.yale.operator.AbstractIOObject
      extended by edu.udo.cs.yale.operator.ResultObjectAdapter
          extended by edu.udo.cs.yale.operator.AbstractModel
              extended by edu.udo.cs.yale.operator.IOModel
                  extended by edu.udo.cs.yale.operator.ContainerModel
All Implemented Interfaces:
IOObject, Model, ResultObject, Saveable

public class ContainerModel
extends IOModel

This model is a container for all models which should be applied in a sequence.

Version:
$Id: ContainerModel.java,v 2.9 2006/08/03 14:39:31 ingomierswa Exp $
Author:
Ingo Mierswa

Field Summary
private  java.util.List<Model> models
          Contains all models.
 
Constructor Summary
ContainerModel()
           
 
Method Summary
 void addModel(Model model)
          Adds the given model to the container.
 void apply(ExampleSet exampleSet)
          Applies all models.
 Model getModel(int index)
          Returns the i-th model.
 java.lang.String getName()
          The default implementation returns the classname without package.
 int getNumberOfModels()
          Returns the total number of models.
 java.awt.Component getVisualisationComponent(IOContainer container)
          Returns a visualization component with a model selector.
 void readData(java.io.ObjectInputStream in)
          reads the model from a stream.
 void removeModel(Model model)
          Removes the given model from the container.
 void setParameter(java.lang.String key, java.lang.Object value)
          Invokes the method for all models.
 java.lang.String toResultString()
          The default implementation simply returns the result of the method Object.toString().
 java.lang.String toString()
           
 void writeData(java.io.ObjectOutputStream out)
          Writes the model to a stream.
 
Methods inherited from class edu.udo.cs.yale.operator.AbstractModel
equals, getExtension, getFileDescription, readModel, readModel, save, writeModel, writeModel
 
Methods inherited from class edu.udo.cs.yale.operator.ResultObjectAdapter
addAction, getActions, toHTML
 
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject
copy, read, read, read, write, write
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface edu.udo.cs.yale.operator.ResultObject
getActions
 
Methods inherited from interface edu.udo.cs.yale.operator.IOObject
copy, write, write
 

Field Detail

models

private java.util.List<Model> models
Contains all models.

Constructor Detail

ContainerModel

public ContainerModel()
Method Detail

apply

public void apply(ExampleSet exampleSet)
           throws OperatorException
Applies all models.

Throws:
OperatorException


getName

public java.lang.String getName()
Description copied from class: ResultObjectAdapter
The default implementation returns the classname without package.

Specified by:
getName in interface ResultObject
Overrides:
getName in class ResultObjectAdapter


addModel

public void addModel(Model model)
Adds the given model to the container.


removeModel

public void removeModel(Model model)
Removes the given model from the container.


getNumberOfModels

public int getNumberOfModels()
Returns the total number of models.


getModel

public Model getModel(int index)
Returns the i-th model.


writeData

public void writeData(java.io.ObjectOutputStream out)
               throws java.io.IOException
Writes the model to a stream.

Specified by:
writeData in class AbstractModel
Throws:
java.io.IOException


readData

public void readData(java.io.ObjectInputStream in)
              throws java.io.IOException
reads the model from a stream.

Specified by:
readData in class IOModel
Throws:
java.io.IOException


setParameter

public void setParameter(java.lang.String key,
                         java.lang.Object value)
                  throws OperatorException
Invokes the method for all models. Please note that this method will only throw an exception if no model was able to handle the given parameter.

Specified by:
setParameter in interface Model
Overrides:
setParameter in class AbstractModel
Throws:
OperatorException


toString

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

toResultString

public java.lang.String toResultString()
Description copied from class: ResultObjectAdapter
The default implementation simply returns the result of the method Object.toString().

Specified by:
toResultString in interface ResultObject
Overrides:
toResultString in class ResultObjectAdapter


getVisualisationComponent

public java.awt.Component getVisualisationComponent(IOContainer container)
Returns a visualization component with a model selector.

Specified by:
getVisualisationComponent in interface ResultObject
Overrides:
getVisualisationComponent in class ResultObjectAdapter



Copyright © 2001-2006