edu.udo.cs.yale.operator
Class SerializableModel

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.SerializableModel
All Implemented Interfaces:
IOObject, Model, ResultObject, Saveable, java.io.Serializable

public abstract class SerializableModel
extends AbstractModel
implements java.io.Serializable

Superclass of all models which must be serializable to write them to a file. All subclasses must have a zero-argument constructor which is invoked during deserialization. Since it cannot be guaranteed that the model can be load again after a Java version change it is recommended that a model extends IOModel instead of this class.

Version:
$Id: SerializableModel.java,v 2.2 2006/03/21 15:35:42 ingomierswa Exp $
Author:
Ingo Mierswa, Simon Fischer
See Also:
Serialized Form

Field Summary
static java.lang.String ID
           
 
Constructor Summary
protected SerializableModel()
           
 
Method Summary
 java.lang.String getIdentifier()
           
static Model readSerializableModel(java.io.ObjectInput in)
           
 void writeData(java.io.ObjectOutputStream out)
          Writes the model in the given file.
 
Methods inherited from class edu.udo.cs.yale.operator.AbstractModel
equals, getExtension, getFileDescription, readModel, readModel, save, setParameter, writeModel, writeModel
 
Methods inherited from class edu.udo.cs.yale.operator.ResultObjectAdapter
addAction, getActions, getName, getVisualisationComponent, toHTML, toResultString
 
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, toString, wait, wait, wait
 
Methods inherited from interface edu.udo.cs.yale.operator.Model
apply
 
Methods inherited from interface edu.udo.cs.yale.operator.ResultObject
getActions, getName, getVisualisationComponent, toResultString
 
Methods inherited from interface edu.udo.cs.yale.operator.IOObject
copy, write, write
 

Field Detail

ID

public static final java.lang.String ID
See Also:
Constant Field Values
Constructor Detail

SerializableModel

protected SerializableModel()
Method Detail

writeData

public void writeData(java.io.ObjectOutputStream out)
               throws java.io.IOException
Writes the model in the given file.

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


getIdentifier

public java.lang.String getIdentifier()

readSerializableModel

public static Model readSerializableModel(java.io.ObjectInput in)
                                   throws java.io.IOException
Throws:
java.io.IOException


Copyright © 2001-2006