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

com.google.gwt.user.client.rpc.CustomFieldSerializer Maven / Gradle / Ivy

There is a newer version: 1.0-alpha-8
Show newest version
package com.google.gwt.user.client.rpc;

@Deprecated
public abstract class CustomFieldSerializer {

    public abstract void deserializeInstance(
            SerializationStreamReader streamReader, T instance)
            throws SerializationException;

    public boolean hasCustomInstantiateInstance() {
        return false;
    }

    public T instantiateInstance(SerializationStreamReader streamReader)
            throws SerializationException {
        throw new SerializationException(
                "instantiateInstance is not supported by " + getClass().getName());
    }

    public abstract void serializeInstance(SerializationStreamWriter streamWriter,
                                           T instance) throws SerializationException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy