Example usage for com.google.gwt.user.client.rpc.core.java.util HashSet_CustomFieldSerializer deserialize

List of usage examples for com.google.gwt.user.client.rpc.core.java.util HashSet_CustomFieldSerializer deserialize

Introduction

In this page you can find the example usage for com.google.gwt.user.client.rpc.core.java.util HashSet_CustomFieldSerializer deserialize.

Prototype

public static void deserialize(SerializationStreamReader streamReader, HashSet instance)
            throws SerializationException 

Source Link

Usage

From source file:com.erinors.hpb.shared.impl.PersistentSet_CustomFieldSerializer.java

License:Apache License

public static void deserialize(SerializationStreamReader streamReader, PersistentSet<?> instance)
        throws SerializationException {
    HashSet_CustomFieldSerializer.deserialize(streamReader, instance);
    instance.setDirty(streamReader.readBoolean());
}