Uses of Interface
io.github.mmm.bean.WritableBean
-
Packages that use WritableBean Package Description io.github.mmm.bean Provides the API for generic java beans defined as simple class or interface avoiding lots of boilerplate code.io.github.mmm.bean.impl Contains internal implementation.io.github.mmm.bean.property ContainsBeanProperty
to allow a bean to contain another bean.io.github.mmm.entity.bean Contains the API for entity beans.io.github.mmm.ui.api.binding.data -
-
Uses of WritableBean in io.github.mmm.bean
Subinterfaces of WritableBean in io.github.mmm.bean Modifier and Type Interface Description interface
VirtualBean
WritableBean
that may bevirtual
so it can potentially represent types that do not exist as JavaClass
.Classes in io.github.mmm.bean that implement WritableBean Modifier and Type Class Description class
AbstractBean
Abstract base implementation ofWritableBean
.class
AbstractVirtualBean
Implementation ofVirtualBean
as regular java class.class
AdvancedBean
Implementation ofVirtualBean
as regular java class.class
Bean
Regular implementation ofWritableBean
.class
DynamicBean
Methods in io.github.mmm.bean with type parameters of type WritableBean Modifier and Type Method Description default <B extends WritableBean>
BBeanFactory. create(Class<B> type)
<B extends WritableBean>
BBeanFactory. create(Class<B> type, boolean dynamic)
Methods in io.github.mmm.bean that return WritableBean Modifier and Type Method Description WritableBean
AbstractBean. copy(boolean isReadOnly)
default WritableBean
ReadableBean. copy()
WritableBean
ReadableBean. copy(boolean readOnly)
WritableBean
ReadableBean. newInstance()
Methods in io.github.mmm.bean that return types with arguments of type WritableBean Modifier and Type Method Description Class<? extends WritableBean>
BeanType. getJavaClass()
-
Uses of WritableBean in io.github.mmm.bean.impl
Methods in io.github.mmm.bean.impl with type parameters of type WritableBean Modifier and Type Method Description <B extends WritableBean>
BBeanCreator. create(Class<B> type, boolean dynamic)
<B extends WritableBean>
BBeanFactoryManager. create(Class<B> type, boolean dynamic)
Methods in io.github.mmm.bean.impl that return types with arguments of type WritableBean Modifier and Type Method Description Class<? extends WritableBean>
BeanTypeImpl. getJavaClass()
Method parameters in io.github.mmm.bean.impl with type arguments of type WritableBean Modifier and Type Method Description static BeanTypeImpl
BeanTypeImpl. asType(Class<? extends WritableBean> javaClass)
static BeanTypeImpl
BeanTypeImpl. asType(Class<? extends WritableBean> javaClass, String stableName)
static String
BeanTypeImpl. getStableName(Class<? extends WritableBean> javaClass, String stableName)
Constructor parameters in io.github.mmm.bean.impl with type arguments of type WritableBean Constructor Description BeanTypeImpl(Class<? extends WritableBean> javaClass, String stableName)
The constructor. -
Uses of WritableBean in io.github.mmm.bean.property
Classes in io.github.mmm.bean.property with type parameters of type WritableBean Modifier and Type Class Description class
BeanProperty<V extends WritableBean>
Implementation ofBeanProperty
.class
BeanPropertyBuilder<V extends WritableBean>
class
PropertyFactoryBean<V extends WritableBean>
Implementation ofPropertyFactory
forBeanProperty
.interface
ReadableBeanProperty<V extends WritableBean>
interface
WritableBeanProperty<V extends WritableBean>
-
Uses of WritableBean in io.github.mmm.entity.bean
Subinterfaces of WritableBean in io.github.mmm.entity.bean Modifier and Type Interface Description interface
EntityBean
WritableBean
for an entity that can be loaded from or saved to a database.Classes in io.github.mmm.entity.bean that implement WritableBean Modifier and Type Class Description class
SimpleEntityBean
Implementation ofEntityBean
as simpleBean
. -
Uses of WritableBean in io.github.mmm.ui.api.binding.data
Classes in io.github.mmm.ui.api.binding.data with type parameters of type WritableBean Modifier and Type Class Description class
UiBindingReceiverImpl<B extends WritableBean>
Implementation ofUiBindingReceiver
.Methods in io.github.mmm.ui.api.binding.data with type parameters of type WritableBean Modifier and Type Method Description <B extends WritableBean>
UiFormGroup<B>UiDataBinding. createFormGroup(B bean, ReadableBeanProperty<B> beanProperty, ReadableBean parentBean, PropertyFilter propertyFilter)
<B extends WritableBean>
UiFormPanel<B>UiDataBinding. createFormPanel(B bean)
<B extends WritableBean>
UiFormPanel<B>UiDataBinding. createFormPanel(B bean, PropertyFilter propertyFilter)
-