ch.sahits.codegen
Interface IModelSerializer


public interface IModelSerializer

This interface defines the methods to serialize and unserialize to/from a file

Since:
1.2.0
Author:
Andi Hotz

Method Summary
 void serialize(java.lang.String fileName)
          To serialize the wizard means to write all data from user input to an XML file so the file can be loaded later on.
 void unserialize(java.lang.String fileName)
          Unserialize the fileName and initialize the wizard with the data.
 

Method Detail

serialize

void serialize(java.lang.String fileName)
To serialize the wizard means to write all data from user input to an XML file so the file can be loaded later on.

Parameters:
fileName - name of the XML file

unserialize

void unserialize(java.lang.String fileName)
Unserialize the fileName and initialize the wizard with the data.

Parameters:
fileName - name of the XML file