All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.objectify.impl.ref.LiveRef Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy