Uses of Interface
com.google.web.bindery.autobean.shared.AutoBeanVisitor.PropertyContext
-
Packages that use AutoBeanVisitor.PropertyContext Package Description com.google.web.bindery.autobean.shared The AutoBean framework provides automatically-generated implementations of bean-like interfaces and a low-level serialization mechanism for those interfaces. -
-
Uses of AutoBeanVisitor.PropertyContext in com.google.web.bindery.autobean.shared
Subinterfaces of AutoBeanVisitor.PropertyContext in com.google.web.bindery.autobean.shared Modifier and Type Interface Description static interfaceAutoBeanVisitor.CollectionPropertyContextA PropertyContext that describes the parameterization of the Collection being visited.static interfaceAutoBeanVisitor.MapPropertyContextA PropertyContext that describes the parameterization of the Map being visited.Methods in com.google.web.bindery.autobean.shared with parameters of type AutoBeanVisitor.PropertyContext Modifier and Type Method Description voidAutoBeanVisitor. endVisitReferenceProperty(java.lang.String propertyName, AutoBean<?> value, AutoBeanVisitor.PropertyContext ctx)Called after visiting a reference property.voidAutoBeanVisitor. endVisitValueProperty(java.lang.String propertyName, java.lang.Object value, AutoBeanVisitor.PropertyContext ctx)Called after visiting a value property.booleanAutoBeanVisitor. visitReferenceProperty(java.lang.String propertyName, AutoBean<?> value, AutoBeanVisitor.PropertyContext ctx)Called every time, butAutoBeanVisitor.visit(AutoBean, Context)will be called for the value only the first time it is encountered.booleanAutoBeanVisitor. visitValueProperty(java.lang.String propertyName, java.lang.Object value, AutoBeanVisitor.PropertyContext ctx)TODO: document.
-