com.googlecode.objectify.impl.ref.DeadRef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of objectify-gwt Show documentation
Show all versions of objectify-gwt Show documentation
Use Google App Engine datastore and Objectify classes with GWT
package com.googlecode.objectify.impl.ref;
import com.googlecode.objectify.Key;
import com.googlecode.objectify.Ref;
/**
* GWT emulation of Ref is contained within Ref; this class is necessary only to keep serialization working.
*
* @author Jeff Schnitzer
*/
public class DeadRef extends Ref
{
/** Make GWT happy */
protected DeadRef() {}
/** */
public DeadRef(Key key) {
super(key);
}
/** */
public DeadRef(T value) {
super(value);
}
/** */
public DeadRef(Key key, T value) {
super(key, value);
}
}