Package com._1c.g5.properties.ui.models
Class PropertiesModelFactory
- java.lang.Object
-
- com._1c.g5.aef2.standard.definitions.models.AbstractFeatureFieldModelFactory
-
- com._1c.g5.properties.ui.models.PropertiesModelFactory
-
- All Implemented Interfaces:
IModelFactory
public class PropertiesModelFactory extends AbstractFeatureFieldModelFactory
Basic model factory implementation generating models for primitive values,Strings
, andBigDecimal
. User should register this model factory if need using extension point.<extension point="com._1c.g5.aef2.standard.definitions.modelFactory"> <factory class="com._1c.g5.properties.ui.models.PropertiesModelFactory" priority="fallback"> </factory> </extension>
-
-
Constructor Summary
Constructors Constructor Description PropertiesModelFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected IModel
createSingleModel(EObjectFeature objectFeature)
Creates model for single object.-
Methods inherited from class com._1c.g5.aef2.standard.definitions.models.AbstractFeatureFieldModelFactory
createGroupModel, createModel
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com._1c.g5.aef2.standard.definitions.models.IModelFactory
createModel
-
-
-
-
Method Detail
-
createSingleModel
protected IModel createSingleModel(EObjectFeature objectFeature)
Description copied from class:AbstractFeatureFieldModelFactory
Creates model for single object.- Specified by:
createSingleModel
in classAbstractFeatureFieldModelFactory
- Parameters:
objectFeature
- theEObjectFeature
instance that contains all needed information.- Returns:
- a newly created model.
-
-