com.googlecode.objectify.impl.ref.LiveRef 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 LiveRef extends Ref
{
/** Make GWT happy */
protected LiveRef() {}
/** */
public LiveRef(Key key) {
super(key);
}
/** */
public LiveRef(T value) {
super(value);
}
/** */
public LiveRef(Key key, T value) {
super(key, value);
}
}