noraui.model.SerializableModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of noraui Show documentation
Show all versions of noraui Show documentation
Non-Regression Automation for User Interfaces
package noraui.model;
public interface SerializableModel {
/**
* @return a string with a Object serialized
*/
String serialize();
/**
* @param string
* is a string with a Object serialized
*/
void deserialize(String string);
}