Class ValueLocator<T>
- java.lang.Object
-
- com.google.web.bindery.requestfactory.shared.Locator<T,java.lang.Void>
-
- com.google.web.bindery.requestfactory.shared.ValueLocator<T>
-
- Type Parameters:
T
- the type of domain object the Locator will operate on
public abstract class ValueLocator<T> extends Locator<T,java.lang.Void>
-
-
Constructor Summary
Constructors Constructor Description ValueLocator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<T>
getDomainType()
Returnsnull
.java.lang.Void
getId(T domainObject)
Returnsnull
.java.lang.Class<java.lang.Void>
getIdType()
Returnsnull
.java.lang.Object
getVersion(T domainObject)
Returnsnull
.
-
-
-
Method Detail
-
getDomainType
public final java.lang.Class<T> getDomainType()
Returnsnull
.- Specified by:
getDomainType
in classLocator<T,java.lang.Void>
-
getId
public final java.lang.Void getId(T domainObject)
Returnsnull
.
-
getIdType
public final java.lang.Class<java.lang.Void> getIdType()
Returnsnull
.
-
getVersion
public final java.lang.Object getVersion(T domainObject)
Returnsnull
.- Specified by:
getVersion
in classLocator<T,java.lang.Void>
- Parameters:
domainObject
- the object to obtain an id for- Returns:
- the object's version or
null
-
-