All Downloads are FREE. Search and download functionalities are using the official Maven repository.

noraui.model.SerializableModel Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy