public abstract class BeanFactory<BeanClass>
extends java.lang.Object
Subclasses must be generated for each Class
you want to use. To trigger
the generation of subclasses, see the documentation on
registering classes for reflection
.
Once the appropriate subclass has been created, you can use the class via the static methods.
For the moment, this class only works with subclasses of BaseWidget
or FormItem
.
Modifier and Type | Class and Description |
---|---|
static interface |
BeanFactory.CanvasMetaFactory
Interface used to trigger the generation and registration of reflection
metadata for
Canvas and all
its subclasses found in the classpath (including your custom subclasses). |
static interface |
BeanFactory.FormItemMetaFactory
Interface used to trigger the generation and registration of reflection
metadata for
FormItem and
all its subclasses found in the classpath (including your custom subclasses). |
static interface |
BeanFactory.MetaFactory
An interface which you can extend in order to register classes
with the
BeanFactory reflection mechanism. |
Modifier and Type | Field and Description |
---|---|
protected java.util.Map<java.lang.String,BeanProperty<BeanClass>> |
properties |
protected com.google.gwt.core.client.JavaScriptObject |
sgwtFactory |
protected BeanFactory |
superclassFactory |
Modifier | Constructor and Description |
---|---|
protected |
BeanFactory()
The constructor is protected because you should not create BeanFactory
instances directly.
|
Modifier and Type | Method and Description |
---|---|
protected BeanFactory<?> |
createSuperclassFactory() |
abstract com.google.gwt.core.client.JavaScriptObject |
doGetOrCreateJsObj(java.lang.Object bean) |
java.lang.Object |
doGetProperty(java.lang.Object bean,
java.lang.String propertyName) |
java.lang.String |
doGetPropertyAsString(java.lang.Object bean,
java.lang.String propertyName) |
void |
doSetProperty(java.lang.Object bean,
java.lang.String propertyName,
java.lang.Object value) |
java.lang.String[] |
getAttributes() |
static java.lang.String[] |
getAttributes(java.lang.Class<?> beanClass)
Gets an array of the names of the properties of a class.
|
static java.lang.String[] |
getAttributes(java.lang.String beanClassName)
Gets an array of the names of the properties of a class.
|
abstract java.lang.Class<BeanClass> |
getBeanClass() |
java.lang.String |
getBeanClassName() |
static BeanFactory<?> |
getFactory(java.lang.Class<?> klass) |
static BeanFactory<?> |
getFactory(java.lang.Object object) |
static BeanFactory<?> |
getFactory(java.lang.String className) |
protected abstract java.lang.Object |
getJavascriptProperty(BeanClass bean,
java.lang.String propertyName) |
protected abstract com.google.gwt.core.client.JsArray<com.google.gwt.core.client.JavaScriptObject> |
getMethods() |
static com.google.gwt.core.client.JavaScriptObject |
getOrCreateJsObj(java.lang.Object bean) |
protected abstract BeanProperty<BeanClass>[] |
getProperties(com.google.gwt.core.client.JsArray<com.google.gwt.core.client.JavaScriptObject> methods) |
static java.lang.Object |
getProperty(java.lang.Object bean,
java.lang.String property)
Gets a property of a bean.
|
static java.lang.String |
getPropertyAsString(java.lang.Object bean,
java.lang.String property)
Gets a property of a bean as a String.
|
static com.google.gwt.core.client.JavaScriptObject |
getSGWTModule() |
protected java.lang.Class |
getSuperclass() |
abstract BeanClass |
newInstance() |
static java.lang.Object |
newInstance(java.lang.Class<?> klass)
Create an instance based on the provided class object.
|
static java.lang.Object |
newInstance(java.lang.String className)
Create an instance based on the provided class name.
|
protected static java.lang.IllegalStateException |
noFactoryException(java.lang.Class<?> klass) |
protected static java.lang.IllegalStateException |
noFactoryException(java.lang.String name) |
void |
registerClassNameWithSGWTFactory() |
protected static void |
registerFactory(BeanFactory<?> factory) |
protected abstract void |
registerValueTypes() |
protected abstract void |
setJavascriptProperty(BeanClass bean,
java.lang.String propertyName,
java.lang.Object value) |
static void |
setProperty(java.lang.Object bean,
java.lang.String property,
java.lang.Object value)
Sets a property of a bean to a value.
|
protected BeanFactory superclassFactory
protected java.util.Map<java.lang.String,BeanProperty<BeanClass>> properties
protected com.google.gwt.core.client.JavaScriptObject sgwtFactory
protected BeanFactory()
BeanFactory.MetaFactory
,
BeanFactory.CanvasMetaFactory
or BeanFactory.FormItemMetaFactory
to create bean factories, and then use the static methods on
BeanFactory.public static com.google.gwt.core.client.JavaScriptObject getSGWTModule()
public static BeanFactory<?> getFactory(java.lang.String className)
public static BeanFactory<?> getFactory(java.lang.Class<?> klass)
public static BeanFactory<?> getFactory(java.lang.Object object)
protected static void registerFactory(BeanFactory<?> factory)
protected static java.lang.IllegalStateException noFactoryException(java.lang.String name)
protected static java.lang.IllegalStateException noFactoryException(java.lang.Class<?> klass)
public static java.lang.Object newInstance(java.lang.String className)
className
- the class namejava.lang.IllegalStateException
- If no factory has been generated for the classNamepublic static java.lang.Object newInstance(java.lang.Class<?> klass)
klass
- the class objectjava.lang.IllegalStateException
- If no factory has been generated for the klasspublic static void setProperty(java.lang.Object bean, java.lang.String property, java.lang.Object value)
bean
- The object whose property is to be setproperty
- The name of the propertyvalue
- The value to setjava.lang.IllegalStateException
- If no factory has been generated for the bean's classjava.lang.IllegalArgumentException
- If there is no appropriate setter for the valuepublic static java.lang.Object getProperty(java.lang.Object bean, java.lang.String property)
bean
- The object whose property to getproperty
- The name of the propertyjava.lang.IllegalStateException
- If no factory has been generated for the bean's classpublic static java.lang.String getPropertyAsString(java.lang.Object bean, java.lang.String property)
bean
- The object whose property to getproperty
- The name of the propertyjava.lang.IllegalStateException
- If no factory has been generated for the bean's classpublic static java.lang.String[] getAttributes(java.lang.String beanClassName)
className
- The name of the classjava.lang.IllegalStateException
- If no factory has been generated for the classpublic static java.lang.String[] getAttributes(java.lang.Class<?> beanClass)
klass
- The klass objectjava.lang.IllegalStateException
- If no factory has been generated for the classpublic static com.google.gwt.core.client.JavaScriptObject getOrCreateJsObj(java.lang.Object bean)
protected java.lang.Class getSuperclass()
protected BeanFactory<?> createSuperclassFactory()
protected abstract void registerValueTypes()
protected abstract com.google.gwt.core.client.JsArray<com.google.gwt.core.client.JavaScriptObject> getMethods()
protected abstract BeanProperty<BeanClass>[] getProperties(com.google.gwt.core.client.JsArray<com.google.gwt.core.client.JavaScriptObject> methods)
public void registerClassNameWithSGWTFactory()
public abstract java.lang.Class<BeanClass> getBeanClass()
public java.lang.String getBeanClassName()
public abstract BeanClass newInstance()
public void doSetProperty(java.lang.Object bean, java.lang.String propertyName, java.lang.Object value)
public java.lang.String[] getAttributes()
public java.lang.Object doGetProperty(java.lang.Object bean, java.lang.String propertyName)
public java.lang.String doGetPropertyAsString(java.lang.Object bean, java.lang.String propertyName)
protected abstract void setJavascriptProperty(BeanClass bean, java.lang.String propertyName, java.lang.Object value)
protected abstract java.lang.Object getJavascriptProperty(BeanClass bean, java.lang.String propertyName)
public abstract com.google.gwt.core.client.JavaScriptObject doGetOrCreateJsObj(java.lang.Object bean)