Module io.github.mmm.property
Class PropertyFactoryList<E>
- java.lang.Object
-
- io.github.mmm.property.factory.AbstractPropertyFactory<List<E>,ListProperty<E>>
-
- io.github.mmm.property.container.list.PropertyFactoryList<E>
-
- Type Parameters:
E
- type of thecontained elements
.
- All Implemented Interfaces:
PropertyFactory<List<E>,ListProperty<E>>
public class PropertyFactoryList<E> extends AbstractPropertyFactory<List<E>,ListProperty<E>>
This is the implementation ofPropertyFactory
forListProperty
.- Since:
- 1.0.0
-
-
Constructor Summary
Constructors Constructor Description PropertyFactoryList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListProperty<E>
create(String name, Class<? extends List<E>> valueClass, PropertyMetadata<List<E>> metadata)
Creates a new instance of the property.Class<ListProperty<E>>
getImplementationClass()
Class<? extends ReadableProperty<List<E>>>
getReadableInterface()
Class<? extends List<E>>
getValueClass()
Class<? extends WritableProperty<List<E>>>
getWritableInterface()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.github.mmm.property.factory.PropertyFactory
isPolymorphic
-
-
-
-
Method Detail
-
getValueClass
public Class<? extends List<E>> getValueClass()
- Returns:
- the
Class
of theproperty value
. May benull
for a generic property.
-
getReadableInterface
public Class<? extends ReadableProperty<List<E>>> getReadableInterface()
- Returns:
- the
Class
reflecting theReadableProperty
interface. May benull
if no dedicated readable interface exists.
-
getWritableInterface
public Class<? extends WritableProperty<List<E>>> getWritableInterface()
- Returns:
- the
Class
reflecting theWritableProperty
interface. May benull
if no dedicated writable interface exists.
-
getImplementationClass
public Class<ListProperty<E>> getImplementationClass()
- Returns:
- the
Class
reflecting theWritableProperty
implementation.
-
create
public ListProperty<E> create(String name, Class<? extends List<E>> valueClass, PropertyMetadata<List<E>> metadata)
Description copied from interface:PropertyFactory
Creates a new instance of the property.- Parameters:
name
- theproperty name
.valueClass
- thevalue class
.metadata
- TODO- Returns:
- the new instance of the property.
-
-