Example usage for com.google.gwt.user.client.rpc.core.java.util HashMap_CustomFieldSerializer serialize

List of usage examples for com.google.gwt.user.client.rpc.core.java.util HashMap_CustomFieldSerializer serialize

Introduction

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

Prototype

public static void serialize(SerializationStreamWriter streamWriter, HashMap instance)
            throws SerializationException 

Source Link

Usage

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

License:Apache License

public static void serialize(SerializationStreamWriter streamWriter, PersistentMap<?, ?> instance)
        throws SerializationException {
    HashMap_CustomFieldSerializer.serialize(streamWriter, instance);
    streamWriter.writeBoolean(instance.isDirty());
}