tabular-data-manager/target/.generated/com/google/gwt/event/shared/UmbrellaException_FieldSeri...

37 lines
1.9 KiB
Java

package com.google.gwt.event.shared;
import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.SerializationStreamReader;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;
import com.google.gwt.user.client.rpc.impl.ReflectionHelper;
@SuppressWarnings("deprecation")
public class UmbrellaException_FieldSerializer implements com.google.gwt.user.client.rpc.impl.TypeHandler {
public static void deserialize(SerializationStreamReader streamReader, com.google.gwt.event.shared.UmbrellaException instance) throws SerializationException {
com.google.web.bindery.event.shared.UmbrellaException_FieldSerializer.deserialize(streamReader, instance);
}
public static com.google.gwt.event.shared.UmbrellaException instantiate(SerializationStreamReader streamReader) throws SerializationException {
return new com.google.gwt.event.shared.UmbrellaException();
}
public static void serialize(SerializationStreamWriter streamWriter, com.google.gwt.event.shared.UmbrellaException instance) throws SerializationException {
com.google.web.bindery.event.shared.UmbrellaException_FieldSerializer.serialize(streamWriter, instance);
}
public Object create(SerializationStreamReader reader) throws SerializationException {
return com.google.gwt.event.shared.UmbrellaException_FieldSerializer.instantiate(reader);
}
public void deserial(SerializationStreamReader reader, Object object) throws SerializationException {
com.google.gwt.event.shared.UmbrellaException_FieldSerializer.deserialize(reader, (com.google.gwt.event.shared.UmbrellaException)object);
}
public void serial(SerializationStreamWriter writer, Object object) throws SerializationException {
com.google.gwt.event.shared.UmbrellaException_FieldSerializer.serialize(writer, (com.google.gwt.event.shared.UmbrellaException)object);
}
}