/* Authors: Alexander Elyasov, Arie Middelkoop Copyright 2011 Utrecht University The use of this sofware is free under the Modified BSD License. */ package UU.ISerialization { public interface Serializable { // The object should serialize itself via the serializer that it is passed as argument. function serializeSelf(serializer : Serializer) : void; //var serializer:Serializer; //function serializeSelf() : void; } }