com.google.gwt.valuestore.shared
Class Property<V>

java.lang.Object
  extended by com.google.gwt.valuestore.shared.Property<V>
Type Parameters:
V - the type of the property's value

public class Property<V>
extends java.lang.Object

Experimental API: This class is still under rapid development, and is very likely to be deleted. Use it at your own risk.

Defines a property of a Record.


Constructor Summary
Property(java.lang.String name, java.lang.Class<V> type)
           
Property(java.lang.String name, java.lang.String displayName, java.lang.Class<V> type)
           
 
Method Summary
 java.lang.String getDisplayName()
           
 java.lang.String getName()
           
 java.lang.Class<V> getType()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Property

public Property(java.lang.String name,
                java.lang.Class<V> type)
Parameters:
name - the property's name and displayName
type - the class of the property's value

Property

public Property(java.lang.String name,
                java.lang.String displayName,
                java.lang.Class<V> type)
Parameters:
name - the property's name
displayName - the property's user visible name
type - the class of the property's value
Method Detail

getDisplayName

public java.lang.String getDisplayName()

getName

public java.lang.String getName()

getType

public java.lang.Class<V> getType()