Uses of Interface
io.github.mmm.bean.ReadableBean
-
Packages that use ReadableBean 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.entity.bean Contains the API for entity beans.io.github.mmm.ui.api.binding.data -
-
Uses of ReadableBean in io.github.mmm.bean
Subinterfaces of ReadableBean 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
.interface
WritableBean
Writable interface ofReadableBean
.Classes in io.github.mmm.bean that implement ReadableBean 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 ReadableBean Modifier and Type Method Description static <B extends ReadableBean>
BReadableBean. copy(B bean, boolean readOnly)
static <B extends ReadableBean>
BReadableBean. copyReadOnly(B bean)
static <B extends ReadableBean>
BReadableBean. newInstance(B bean)
Methods in io.github.mmm.bean with parameters of type ReadableBean Modifier and Type Method Description default boolean
ReadableBean. isEqualTo(ReadableBean other)
ABean
implementation shall not overrideObject.equals(Object)
andObject.hashCode()
for efficient usage inCollection
s andMap
s. -
Uses of ReadableBean in io.github.mmm.entity.bean
Subinterfaces of ReadableBean 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 ReadableBean Modifier and Type Class Description class
SimpleEntityBean
Implementation ofEntityBean
as simpleBean
. -
Uses of ReadableBean in io.github.mmm.ui.api.binding.data
Methods in io.github.mmm.ui.api.binding.data with type parameters of type ReadableBean Modifier and Type Method Description <B extends ReadableBean>
UiValidatableWidget<B>UiDataBinding. createEditor(B bean)
<B extends ReadableBean>
UiValidatableWidget<B>UiDataBinding. createEditor(B bean, int columns)
Methods in io.github.mmm.ui.api.binding.data with parameters of type ReadableBean Modifier and Type Method Description void
UiDataBinding. bindBean(ReadableBean bean, UiBindingReceiver receiver, boolean createGroup)
void
UiDataBinding. bindBean(ReadableBean bean, UiBindingReceiver receiver, boolean createGroup, PropertyFilter propertyFilter)
<B extends WritableBean>
UiFormGroup<B>UiDataBinding. createFormGroup(B bean, ReadableBeanProperty<B> beanProperty, ReadableBean parentBean, PropertyFilter propertyFilter)
-