GWT 2.1.0

Uses of Interface
com.google.gwt.editor.client.AutoBean

Packages that use AutoBean
com.google.gwt.editor.client A framework for editing bean-like objects. 
 

Uses of AutoBean in com.google.gwt.editor.client
 

Methods in com.google.gwt.editor.client that return AutoBean
 AutoBean<T> AutoBean.clone(boolean deep)
          Creates a copy of the AutoBean.
<T> AutoBean<T>
AutoBeanFactory.create(java.lang.Class<T> clazz)
          Allows dynamic creation of AutoBean instances based on declared parameterizations.
<T,U extends T>
AutoBean<T>
AutoBeanFactory.create(java.lang.Class<T> clazz, U delegate)
          Allows dynamic creation of wrapped AutoBean instances based on declared parameterizations.
static
<T,U extends T>
AutoBean<T>
AutoBeanUtils.getAutoBean(U delegate)
          Return the single AutoBean wrapper that is observing the delegate object or null if the parameter is nullor not wrapped by an AutoBean.
 

Methods in com.google.gwt.editor.client with parameters of type AutoBean
static java.util.Map<java.lang.String,java.lang.Object> AutoBeanUtils.diff(AutoBean<?> a, AutoBean<?> b)
          Returns a map of properties that differ between two AutoBeans.
static java.util.Map<java.lang.String,java.lang.Object> AutoBeanUtils.diff(AutoBean<?> a, AutoBean<?> b)
          Returns a map of properties that differ between two AutoBeans.
 void AutoBeanVisitor.endVisit(AutoBean<?> bean, AutoBeanVisitor.Context ctx)
          Called after visiting an AutoBean.
 void AutoBeanVisitor.endVisitReferenceProperty(java.lang.String propertyName, AutoBean<?> value, AutoBeanVisitor.PropertyContext ctx)
          Called after visiting a reference property.
static java.util.Map<java.lang.String,java.lang.Object> AutoBeanUtils.getAllProperties(AutoBean<?> bean)
          Returns a map that is a copy of the properties contained in an AutoBean.
 boolean AutoBeanVisitor.visit(AutoBean<?> bean, AutoBeanVisitor.Context ctx)
          Called when visiting an AutoBean.
 boolean AutoBeanVisitor.visitReferenceProperty(java.lang.String propertyName, AutoBean<?> value, AutoBeanVisitor.PropertyContext ctx)
          Called every time, but AutoBeanVisitor.visit(AutoBean, Context) will be called for the value only the first time it is encountered.
 


GWT 2.1.0