Uses of Interface
io.github.mmm.bean.VirtualBean
-
Packages that use VirtualBean 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. -
-
Uses of VirtualBean in io.github.mmm.bean
Classes in io.github.mmm.bean that implement VirtualBean Modifier and Type Class Description class
AbstractVirtualBean
Implementation ofVirtualBean
as regular java class.class
AdvancedBean
Implementation ofVirtualBean
as regular java class.Methods in io.github.mmm.bean with type parameters of type VirtualBean Modifier and Type Method Description static <B extends VirtualBean>
BVirtualBean. getPrototype(B bean)
Methods in io.github.mmm.bean that return VirtualBean Modifier and Type Method Description VirtualBean
BeanClass. getPrototype()
Methods in io.github.mmm.bean that return types with arguments of type VirtualBean Modifier and Type Method Description Class<? extends VirtualBean>
BeanClass. getJavaClass()
-
Uses of VirtualBean in io.github.mmm.bean.impl
Methods in io.github.mmm.bean.impl that return VirtualBean Modifier and Type Method Description VirtualBean
BeanClassImpl. getPrototype()
Methods in io.github.mmm.bean.impl that return types with arguments of type VirtualBean Modifier and Type Method Description Class<? extends VirtualBean>
BeanClassImpl. getJavaClass()
Methods in io.github.mmm.bean.impl with parameters of type VirtualBean Modifier and Type Method Description void
BeanClassImpl. setPrototype(VirtualBean prototype)
Method parameters in io.github.mmm.bean.impl with type arguments of type VirtualBean Modifier and Type Method Description static BeanClassImpl
BeanClassImpl. asClass(Class<? extends VirtualBean> javaClass)
static BeanClassImpl
BeanClassImpl. asClass(Class<? extends VirtualBean> javaClass, Function<Class<?>,BeanClassImpl> factory)
Constructor parameters in io.github.mmm.bean.impl with type arguments of type VirtualBean Constructor Description BeanClassImpl(Class<? extends VirtualBean> javaClass, List<BeanClassImpl> superClassList)
The constructor.BeanClassImpl(Class<? extends VirtualBean> javaClass, List<BeanClassImpl> superClassList, String stableName)
The constructor.BeanClassImpl(Class<? extends VirtualBean> javaClass, List<BeanClassImpl> superClassList, String stableName, String simpleName)
The constructor.BeanClassImpl(Class<? extends VirtualBean> javaClass, List<BeanClassImpl> superClassList, String packageName, String stableName, String simpleName)
The constructor.
-