Uses of Interface
com._1c.g5.aef2.models.IModel
-
-
Uses of IModel in com._1c.g5.aef2.components
Classes in com._1c.g5.aef2.components with type parameters of type IModel Modifier and Type Class Description class
Component<M extends IModel,P extends IParameterization>
BaseIComponent
implementation.interface
IComponent<M extends IModel>
Defines contract of a component. -
Uses of IModel in com._1c.g5.aef2.emf.models
Classes in com._1c.g5.aef2.emf.models that implement IModel Modifier and Type Class Description class
EmfList<T>
Represents a EMF list.class
EmfMap<K,V>
Represents a EMF map.class
EmfValue<T>
Represents a EMF value. -
Uses of IModel in com._1c.g5.aef2.engines
Methods in com._1c.g5.aef2.engines with type parameters of type IModel Modifier and Type Method Description <M extends IModel>
ISceneEngine. showDialog(IComponent<M> component, M model)
<M extends IModel>
ISceneIEngine. showDialog(IComponent<M> component, M model)
Shows a dialog. -
Uses of IModel in com._1c.g5.aef2.models
Subinterfaces of IModel in com._1c.g5.aef2.models Modifier and Type Interface Description interface
IAttribute<O,P>
The contract for models that works with the attribute of some object.interface
ICompoundModel
Defines the contract of a compound model.interface
IEmfAttribute<O extends org.eclipse.emf.ecore.EObject>
TheIAttribute
where the attribute is the EMF feature of some object.Classes in com._1c.g5.aef2.models that implement IModel Modifier and Type Class Description class
CompoundModel
Base class for the compound models.class
EditableModel
Base class for editable models.class
Model
Base class for models.Methods in com._1c.g5.aef2.models with type parameters of type IModel Modifier and Type Method Description protected <M extends IModel>
MCompoundModel. addModel(M model)
Adds subordinate model.Methods in com._1c.g5.aef2.models that return IModel Modifier and Type Method Description IModel
IModel. createWorkingCopy()
IModel
Model. createWorkingCopy()
Methods in com._1c.g5.aef2.models that return types with arguments of type IModel Modifier and Type Method Description Iterable<IModel>
CompoundModel. getModels()
Iterable<IModel>
ICompoundModel. getModels()
Methods in com._1c.g5.aef2.models with parameters of type IModel Modifier and Type Method Description void
IModelListener. modelChanged(IModel model, ChangeOrigin changeOrigin)
Invoked when the model is changed.void
ModelListener. modelChanged(IModel model, ChangeOrigin changeOrigin)
void
IModelListener. modelCommitted(IModel model)
Invoked when the model is committed.void
ModelListener. modelCommitted(IModel model)
void
IModelListener. modelDisposed(IModel model)
Invoked when the model is disposed.void
ModelListener. modelDisposed(IModel model)
void
IModelListener. modelOffline(IModel model)
Invoked when the model goes offline.void
ModelListener. modelOffline(IModel model)
void
IModelListener. modelOnline(IModel model)
Invoked when the model goes online.void
ModelListener. modelOnline(IModel model)
-
Uses of IModel in com._1c.g5.aef2.models.list
Subinterfaces of IModel in com._1c.g5.aef2.models.list Modifier and Type Interface Description interface
IEmfListAttribute<T,O extends org.eclipse.emf.ecore.EObject>
TheIList
that works with attribute.interface
IList<E>
The model of a list.Classes in com._1c.g5.aef2.models.list that implement IModel Modifier and Type Class Description class
ListModel<E>
Base list model implementation.class
ListWorkingCopy<T>
List working copy – editable proxy buffer for another list. -
Uses of IModel in com._1c.g5.aef2.models.map
Subinterfaces of IModel in com._1c.g5.aef2.models.map Modifier and Type Interface Description interface
IEmfMapAttribute<K,V,O extends org.eclipse.emf.ecore.EObject>
TheIMap
that works with attribute.interface
IMap<K,V>
The model of the map.Classes in com._1c.g5.aef2.models.map that implement IModel Modifier and Type Class Description class
MapModel<K,V>
Base map model implementation.class
MapWorkingCopy<K,V>
Map working copy – editable proxy buffer for another map. -
Uses of IModel in com._1c.g5.aef2.models.pojo
Classes in com._1c.g5.aef2.models.pojo that implement IModel Modifier and Type Class Description class
PojoList<T>
POJO list model implementation.class
PojoMap<K,V>
POJO map model implementation.class
PojoValue<T>
POJO value model implementation. -
Uses of IModel in com._1c.g5.aef2.models.value
Subinterfaces of IModel in com._1c.g5.aef2.models.value Modifier and Type Interface Description interface
IEmfValueAttribute<T,O extends org.eclipse.emf.ecore.EObject>
TheIValue
that works with attribute.interface
IValue<T>
The value model.Classes in com._1c.g5.aef2.models.value that implement IModel Modifier and Type Class Description class
Value<T>
BaseIValue
implementation.class
ValueWorkingCopy<T>
Value working copy – editable proxy buffer for another value. -
Uses of IModel in com._1c.g5.aef2.standard.components
Classes in com._1c.g5.aef2.standard.components with type parameters of type IModel Modifier and Type Class Description class
AbstractControlComponent<M extends IModel,P extends IParameterization,V extends ControlViewModel>
The basic class for all control components.class
CompositeComponent<M extends IModel,P extends IParameterization>
The composite component.class
ContainerComponent<M extends IModel,P extends IParameterization>
The container component.class
DialogComponent<M extends IModel,P extends IDialogParametrization>
The dialog component.class
LinkComponent<M extends IModel>
The link component.class
ScrolledCompositeComponent<M extends IModel,P extends IParameterization>
The composite component which know how to scroll content.class
StandardComponent<M extends IModel,P extends IParameterization>
BaseIComponent
class for all of the components that use EMF-basedControlViewModel
implementation.Methods in com._1c.g5.aef2.standard.components with type parameters of type IModel Modifier and Type Method Description protected <DM extends IModel,DMR,VMM extends IViewModelModel,VMR>
VMMStandardComponent. bindModel(DM model, ControlViewModel viewModel, org.eclipse.emf.ecore.EStructuralFeature feature, BiFunction<ControlViewModel,org.eclipse.emf.ecore.EStructuralFeature,VMM> viewModelModelCreator, Function<DM,DMR> modelGetter, BiConsumer<DM,VMR> modelSetter, Function<VMM,VMR> viewModelGetter, BiConsumer<VMM,DMR> viewModelSetter, EnumSet<StandardComponent.BindingDirection> direction)
Binds the givenmodel
to view model.Methods in com._1c.g5.aef2.standard.components that return types with arguments of type IModel Modifier and Type Method Description CompositeComponent<IModel,IParameterization>
ScrolledCompositeComponent. getContent()
Gets the composite component which represents content of scrolled composite.Methods in com._1c.g5.aef2.standard.components with parameters of type IModel Modifier and Type Method Description protected void
StandardComponent. updateViewModelStatus(ControlViewModel viewModel, IModel model)
Updates the validation status of the given view model. -
Uses of IModel in com._1c.g5.aef2.standard.definitions
Methods in com._1c.g5.aef2.standard.definitions that return types with arguments of type IModel Modifier and Type Method Description IComponent<IModel>
AbstractDefinition. createComponent(Object[] objects)
-
Uses of IModel in com._1c.g5.aef2.standard.definitions.models
Subinterfaces of IModel in com._1c.g5.aef2.standard.definitions.models Modifier and Type Interface Description interface
IDefinitionModel
The model that is used by components that creates their child byIDefinition
s.interface
IManagingModel
TheIModel
that is used by components that creates child components byIManagingDefinition
and manages their lifecycle.Classes in com._1c.g5.aef2.standard.definitions.models that implement IModel Modifier and Type Class Description class
AbstractDefinitionModel
The abstract definition model.
It implements the basic functionality: the sub-models managing and the rule result processing.
It doesn't specify the way of getting the model objects or definition.class
DefinitionModel
The default implementation of theIDefinitionModel
.Methods in com._1c.g5.aef2.standard.definitions.models that return IModel Modifier and Type Method Description protected IModel
AbstractFeatureFieldModelFactory. createGroupModel(IFieldDefinition definition, org.eclipse.emf.ecore.EObject... objects)
Creates model for multiple objects.protected IModel
AbstractMultiFeatureFieldModelFactory. createGroupModel(org.eclipse.emf.ecore.EObject[] objects, AbstractMultiFeatureFieldModelFactory.FeaturePaths featurePaths)
Creates a model for a multi-object input.IModel
AbstractFeatureFieldModelFactory. createModel(IDefinition definition, org.eclipse.emf.ecore.EObject... objects)
IModel
AbstractMultiFeatureFieldModelFactory. createModel(IDefinition definition, org.eclipse.emf.ecore.EObject... objects)
IModel
CompositeModelFactory. createModel(IDefinition definition, Collection<Object> objects)
IModel
CompositeModelFactory. createModel(IDefinition definition, org.eclipse.emf.ecore.EObject... objects)
IModel
DefaultModelFactory. createModel(IDefinition definition, Collection<Object> objects)
IModel
DefaultModelFactory. createModel(IDefinition definition, org.eclipse.emf.ecore.EObject... objects)
default IModel
IModelFactory. createModel(IDefinition definition, Collection<Object> objects)
CreatesIModel
instance by the given arguments.IModel
IModelFactory. createModel(IDefinition definition, org.eclipse.emf.ecore.EObject... objects)
CreatesIModel
instance by the given arguments.protected abstract IModel
AbstractFeatureFieldModelFactory. createSingleModel(EObjectFeature objectFeature)
Creates model for single object.protected abstract IModel
AbstractMultiFeatureFieldModelFactory. createSingleModel(org.eclipse.emf.ecore.EObject eObject, AbstractMultiFeatureFieldModelFactory.FeaturePaths featurePaths)
Creates a model for a single input object.Methods in com._1c.g5.aef2.standard.definitions.models that return types with arguments of type IModel Modifier and Type Method Description Iterable<IModel>
AbstractDefinitionModel. getModels()
Methods in com._1c.g5.aef2.standard.definitions.models with parameters of type IModel Modifier and Type Method Description void
AbstractDefinitionModel. addModel(IModel model)
void
IDefinitionModel. addModel(IModel model)
Adds the givenmodel
to the current definition model.void
AbstractDefinitionModel. removeModel(IModel model)
void
IDefinitionModel. removeModel(IModel model)
Removes the givenmodel
from the current definition model. -
Uses of IModel in com._1c.g5.aef2.standard.definitions.validation
Methods in com._1c.g5.aef2.standard.definitions.validation with parameters of type IModel Modifier and Type Method Description protected void
AbstractManagingComponentValidationSupport. onComponentModelChange(IModel model)
-
Uses of IModel in com._1c.g5.aef2.standard.models
Subinterfaces of IModel in com._1c.g5.aef2.standard.models Modifier and Type Interface Description interface
IViewModelList<E>
TheIViewModelModel
contract forIValue
model types.interface
IViewModelModel
The contract ofIModel
for view model.interface
IViewModelValue<T>
TheIViewModelModel
contract forIValue
model type.Classes in com._1c.g5.aef2.standard.models that implement IModel Modifier and Type Class Description class
EmptyModel
Empty model for components that doesn't require the model.class
ViewModelList<T>
The special list model implementation forIViewModel
.class
ViewModelValue<T>
The special model implementation forIViewModel
. -
Uses of IModel in com._1c.g5.aef2.standard.validation
Classes in com._1c.g5.aef2.standard.validation with type parameters of type IModel Modifier and Type Class Description class
AbstractExternalValidationSupport<T extends IComponent<? extends IModel>,EVR>
Provides the external validation support for components.Methods in com._1c.g5.aef2.standard.validation with parameters of type IModel Modifier and Type Method Description protected abstract void
AbstractExternalValidationSupport. onComponentModelChange(IModel model)
Reacts on component model change.
It is a place to make conversion model to validable object. -
Uses of IModel in com._1c.g5.properties.ui
Classes in com._1c.g5.properties.ui that implement IModel Modifier and Type Class Description class
PropertyPaletteModel
Model for property palette. -
Uses of IModel in com._1c.g5.properties.ui.models
Methods in com._1c.g5.properties.ui.models that return IModel Modifier and Type Method Description protected IModel
PropertiesModelFactory. createSingleModel(EObjectFeature objectFeature)
-
Uses of IModel in com._1c.g5.v8.dt.addin.ui.aef
Subinterfaces of IModel in com._1c.g5.v8.dt.addin.ui.aef Modifier and Type Interface Description interface
IAddInModel
Addin ui modelClasses in com._1c.g5.v8.dt.addin.ui.aef that implement IModel Modifier and Type Class Description class
AddInModel
The bm value model implementation forIAddInModel
-
Uses of IModel in com._1c.g5.v8.dt.aef2
Subinterfaces of IModel in com._1c.g5.v8.dt.aef2 Modifier and Type Interface Description interface
IModelApiAwareModel
TheIModelApi
aware model. -
Uses of IModel in com._1c.g5.v8.dt.aef2.bm.models
Classes in com._1c.g5.v8.dt.aef2.bm.models that implement IModel Modifier and Type Class Description class
BmInlineTaskValue<T>
A BM value with a supplier of customIBmTask
.class
BmList<T>
Represents a BM object feature list model.class
BmMap<K,V>
Represents a BM object feature map model.class
BmSkipNullValue<T>
RepresentsBmValue
which avoids setting ofnull
values to the model.class
BmValue<T>
Represents a BM object feature value. -
Uses of IModel in com._1c.g5.v8.dt.bp.scheme.ui.aef.models
Subinterfaces of IModel in com._1c.g5.v8.dt.bp.scheme.ui.aef.models Modifier and Type Interface Description interface
IAddressingAttributeModel
Model for single addressing attribute.interface
IAddressingAttributesCollectionModel
Represents collection of addressing attributes model.interface
IGraphicalSchemeLineModel
Interface for graphical scheme line model.interface
IGraphicalSchemeValue<TValue,TSelection extends org.eclipse.emf.ecore.EObject>
The value model for graphical scheme bundlesinterface
IHandlerCollectionModel
The collection of handlers model.interface
IHandlerModel<T extends org.eclipse.emf.ecore.EObject>
The single handler model.Classes in com._1c.g5.v8.dt.bp.scheme.ui.aef.models that implement IModel Modifier and Type Class Description class
AddressingAttributeModel
Implementation ofIAddressingAttributeModel
.class
AddressingAttributesCollectionModel
Implementation ofIAddressingAttributesCollectionModel
.class
BmGraphicalSchemeLineModel
Graphical scheme line model.class
EventHandlerCollectionModel
The BM aware implementation ofIHandlerCollectionModel
for graphical scheme item event handler collectionclass
EventHandlerModel
Model for addressing event handler selection component.class
GraphicalSchemeCaseValue
class
GraphicalSchemeItemValue
BmValue
implementation forGraphicalSchemeItem
name.Methods in com._1c.g5.v8.dt.bp.scheme.ui.aef.models that return IModel Modifier and Type Method Description protected IModel
BpSchemeModelFactory. createSingleModel(EObjectFeature objectFeature)
protected IModel
GraphicalSchemePictureModelFactory. createSingleModel(EObjectFeature objectFeature)
-
Uses of IModel in com._1c.g5.v8.dt.cmi.ui.aef.models
Methods in com._1c.g5.v8.dt.cmi.ui.aef.models that return IModel Modifier and Type Method Description protected IModel
CmiModelFactory. createSingleModel(EObjectFeature objectFeature)
-
Uses of IModel in com._1c.g5.v8.dt.dcs.ui.aef.models.chart
Classes in com._1c.g5.v8.dt.dcs.ui.aef.models.chart that implement IModel Modifier and Type Class Description class
EmfChartColorPaletteDescriptionModel
Component EMF-model forChartColorPaletteDescription
.class
EmfChartScaleModelValue
Implementation ofIChartScaleModel
forChartScaleValueEditor
.class
EmfIntervalBoundModelValue
EMF value implementation ofIIntervalBoundModelValue
. -
Uses of IModel in com._1c.g5.v8.dt.dcs.ui.aef.models.chart.reference
Classes in com._1c.g5.v8.dt.dcs.ui.aef.models.chart.reference that implement IModel Modifier and Type Class Description class
DcsChartReferenceBandGridModel
Grid model forChartReferenceBand
class
DcsChartReferenceLineGridModel
Grid model forChartReferenceLine
. -
Uses of IModel in com._1c.g5.v8.dt.dcs.ui.valueeditors
Methods in com._1c.g5.v8.dt.dcs.ui.valueeditors with type parameters of type IModel Modifier and Type Method Description protected <T extends IModel>
voidAefValueEditorBase. openDialog(IComponent<T> component, T model, Consumer<T> onSuccessConsumer)
Creates dialog. -
Uses of IModel in com._1c.g5.v8.dt.form.internal.ui.properties.models
Subinterfaces of IModel in com._1c.g5.v8.dt.form.internal.ui.properties.models with annotations of type with type parameters of type that implement declared as with annotations of type with type parameters of type with annotations of type with annotations of type with type parameters of type that return that return types with arguments of type with parameters of type with type arguments of type that throw with annotations of type with annotations of type with parameters of type with type arguments of type that throw Modifier and Type Interface Description interface
com._1c.g5.v8.dt.form.internal.ui.properties.models.IFormValue<TValue,TSelection extends org.eclipse.emf.ecore.EObject>
The value model for form bundles. -
Uses of IModel in com._1c.g5.v8.dt.form.ui.chart.aef.models
Subinterfaces of IModel in com._1c.g5.v8.dt.form.ui.chart.aef.models Modifier and Type Interface Description interface
IChartAxisModel
Component model for chart axis interface.interface
IChartColorPaletteDescriptionDetailedModel
Detailed component model forChartColorPaletteDescription
interface.interface
IChartColorPaletteDescriptionModel
Component model forChartColorPaletteDescription
interface.interface
IChartScaleDetailedModel
Chart scale detailed model interface.interface
IChartScaleModel
Chart scale model interface.interface
IIntervalBoundModelValue
BM value for interval's lower or upper bound interface.interface
ITimeScaleLevelsLinkModel
The model for time scale levels link component.Classes in com._1c.g5.v8.dt.form.ui.chart.aef.models that implement IModel Modifier and Type Class Description class
BmTimeScaleLevelsLinkModel
The BM implementation ofITimeScaleLevelsLinkModel
.class
ChartColorPaletteDescriptionDetailedModel
Detailed model forChartColorPaletteDescription
.class
ChartScaleDetailedModel
Detailed model forChartScale
.class
EmfChartLineModel
The implementation ofIChartLineModel
. -
Uses of IModel in com._1c.g5.v8.dt.form.ui.chart.aef.models.labelarea
Classes in com._1c.g5.v8.dt.form.ui.chart.aef.models.labelarea that implement IModel Modifier and Type Class Description class
EmfLabelAreaModelValue
BM model forLabelArea
. -
Uses of IModel in com._1c.g5.v8.dt.form.ui.chart.aef.models.reference
Subinterfaces of IModel in com._1c.g5.v8.dt.form.ui.chart.aef.models.reference Modifier and Type Interface Description interface
IChartReferenceBandGridModel
Interface for model for chart reference band in grid.interface
IChartReferenceLineGridModel
Interface for model for chart reference line in grid. -
Uses of IModel in com._1c.g5.v8.dt.form.ui.chart.aef.models.trendline
Subinterfaces of IModel in com._1c.g5.v8.dt.form.ui.chart.aef.models.trendline Modifier and Type Interface Description interface
ITrendlineArrayGridModel
Interface for model for trendline array in grid.Classes in com._1c.g5.v8.dt.form.ui.chart.aef.models.trendline that implement IModel Modifier and Type Class Description class
TrendlineArrayGridModel
Model for trendline array in grid. -
Uses of IModel in com._1c.g5.v8.dt.form.ui.properties.models
Subinterfaces of IModel in com._1c.g5.v8.dt.form.ui.properties.models Modifier and Type Interface Description interface
IAdjustableBooleanModel
{@link AdjustableBoolean) model.interface
IHandlerCollectionModel
The collection of handlers model.interface
IHandlerModel<T extends org.eclipse.emf.ecore.EObject>
The single handler model.Classes in com._1c.g5.v8.dt.form.ui.properties.models that implement IModel Modifier and Type Class Description class
BmAdjustableBooleanModel
IAdjustableBooleanModel
implementation.class
CommandActionModel
TheIHandlerModel
implementation for form command.class
EventHandlerCollectionModel
The BM aware implementation ofIHandlerCollectionModel
for form event handler collection.class
EventHandlerModel
TheIHandlerModel
implementation for event container. -
Uses of IModel in com._1c.g5.v8.dt.form.ui.wizard
Classes in com._1c.g5.v8.dt.form.ui.wizard that implement IModel Modifier and Type Class Description static class
FormWizard.FormModel
The model for form wizard pages.Methods in com._1c.g5.v8.dt.form.ui.wizard that return IModel Modifier and Type Method Description protected IModel
FormWizard. getModelForPageComponent(NewWizardPageComponent<?> component)
Methods in com._1c.g5.v8.dt.form.ui.wizard that return types with arguments of type IModel Modifier and Type Method Description protected CompositeComponent<IModel,?>
FormWizardAttributesPage. createColumnsComponent()
-
Uses of IModel in com._1c.g5.v8.dt.md.help.ui.aef.model
Subinterfaces of IModel in com._1c.g5.v8.dt.md.help.ui.aef.model Modifier and Type Interface Description interface
IOpenMdHelpModel
The contract of model forOpenMdHelpComponent
.Classes in com._1c.g5.v8.dt.md.help.ui.aef.model that implement IModel Modifier and Type Class Description class
BmOpenMdHelpModel
TheIOpenMdHelpModel
BM implementation.Methods in com._1c.g5.v8.dt.md.help.ui.aef.model that return IModel Modifier and Type Method Description protected IModel
MdHelpModelFactory. createSingleModel(EObjectFeature objectFeature)
-
Uses of IModel in com._1c.g5.v8.dt.md.ui.aef.models
Classes in com._1c.g5.v8.dt.md.ui.aef.models with type parameters of type IModel Modifier and Type Class Description class
StandardObjectSwitchingSourceModel<M extends IModel>
The wrap-model for standard attributes models that switches sources (EMF/BM) automatically.static interface
StandardObjectSwitchingSourceModel.IStandardAttributeModelCreator<T extends IModel>
Subinterfaces of IModel in com._1c.g5.v8.dt.md.ui.aef.models Modifier and Type Interface Description interface
IBaseBmHandlerNameModel
Model value for handler name editinginterface
IBmCommonAttributeDataSeparationModel
The Bm model forCommonAttributeDataSeparation
interface
ICharacteristicsDescriptionDataPathModel<T extends org.eclipse.emf.ecore.EObject>
CharacteristicsDescription
data path field model interface.interface
ICharacteristicsDescriptionFieldModel<T extends org.eclipse.emf.ecore.EObject>
Field
model interface.interface
IChoiceParametersModel
The interface of the model for editingChoiceParameter
s.interface
ICodeModel<O extends org.eclipse.emf.ecore.EObject>
Model forPredefinedItem
code feature supports.interface
IColorModel
The model for color component.interface
ICustomColorPaletteModel
Interface for custom color palette model.interface
IEventSubscriptionEventsModel
Event subscription event modelinterface
IEventSubscriptionHandlerNameModel
Event subscription handler modelinterface
IFontSelectionModel
The contract of model for font selection component.interface
IHandlerModel
The handler model.interface
IMdChoiceParameterLinksModel
Contract forField
-based choice parameter links of MD object attributes.interface
IMdPictureModel
MdPicture
model.interface
IMdTypeLinkModel
The contract of models for Type link feature of MD object attributes.interface
IMobileApplicationUrlsModel
MobileApplicationUrl
model.interface
IMultilanguageFormattedTextModel
The contract of the model forMultilanguageFormattedTextComponent
.interface
IMultilanguageModel
The contract of the model forMultilanguageComponent
.interface
INavigatorTreeDialogActionBarModel<T extends org.eclipse.emf.ecore.EObject>
The model interface forNavigatorTreeDialogActionBarComponent
.interface
IPictureModel
Picture model.interface
IRequiredPermissionsModel
TheIList
model implementation for required permissions component.interface
ISingleLanguageFormattedTextModel
The contract of the model forSingleLanguageFormattedTextComponent
.interface
ISingleLanguageModel
The contract of the model forAbstractSingleLanguageComponent
.interface
ISourceUrlModel<T extends org.eclipse.emf.ecore.EObject>
WS-reference source URL model.interface
IUsedMobileApplicationFunctionalitiesModel
TheIList
model implementation for used mobile application functionalities component.Methods in com._1c.g5.v8.dt.md.ui.aef.models that return IModel Modifier and Type Method Description protected IModel
BmCommonAttributeDataSeparationModelFactory. createSingleModel(EObjectFeature objectFeature)
protected IModel
DocumentNumeratorModelFactory. createSingleModel(EObjectFeature objectFeature)
protected IModel
MdSingleDefaultModelFactory. createSingleModel(EObjectFeature objectFeature)
protected IModel
MdSingleModelFactory. createSingleModel(EObjectFeature objectFeature)
protected IModel
SelectionModelFactory. createSingleModel(EObjectFeature objectFeature)
protected IModel
StandardAttributeModelFactory. createSingleModel(EObjectFeature objectFeature)
-
Uses of IModel in com._1c.g5.v8.dt.md.ui.aef.models.commonpicture
Subinterfaces of IModel in com._1c.g5.v8.dt.md.ui.aef.models.commonpicture Modifier and Type Interface Description interface
ICommonPictureContentEditModel
The base model for common picture content editorinterface
ICommonPictureContentGridModel
The grid model for Common picture content grid component.Classes in com._1c.g5.v8.dt.md.ui.aef.models.commonpicture that implement IModel Modifier and Type Class Description class
CommonPictureContentEditModel
BaseCommonPicture
content editor modelclass
CommonPictureContentGridModel
The implementation of grid model for Common picture content grid componentMethods in com._1c.g5.v8.dt.md.ui.aef.models.commonpicture that return IModel Modifier and Type Method Description IModel
CommonPictureModelFactory. createModel(IDefinition definition, org.eclipse.emf.ecore.EObject... objects)
-
Uses of IModel in com._1c.g5.v8.dt.md.ui.aef.models.type
Subinterfaces of IModel in com._1c.g5.v8.dt.md.ui.aef.models.type Modifier and Type Interface Description interface
ITypeDescriptionDialogModel
Contract for type description dialog component model.interface
ITypeDescriptionModel
Contract for type description component model.Classes in com._1c.g5.v8.dt.md.ui.aef.models.type that implement IModel Modifier and Type Class Description class
AbstractTypeDescriptionDialogModel
The abstract model for type description dialog component.class
AbstractTypeDescriptionModel
The abstract model for type description component. -
Uses of IModel in com._1c.g5.v8.dt.md.ui.aef.models.value
Subinterfaces of IModel in com._1c.g5.v8.dt.md.ui.aef.models.value Modifier and Type Interface Description interface
IValueModel
The AEF model for component that works withValue
.Classes in com._1c.g5.v8.dt.md.ui.aef.models.value that implement IModel Modifier and Type Class Description class
BmCharacteristicsDescriptionValueModel
TheCharacteristicsDescription
BMIValueModel
implementation.class
BmValueModel
The BMIValueModel
implementation.class
EmfCharacteristicsDescriptionValueModel
TheCharacteristicsDescription
EmfIValueModel
implementation.class
EmfValueModel
The EmfIValueModel
implementation.class
UnfilledParentValueModel
Special value model for "Unfilled parent value" property. -
Uses of IModel in com._1c.g5.v8.dt.md.ui.editor.aef.descriptor.commonattribute
Classes in com._1c.g5.v8.dt.md.ui.editor.aef.descriptor.commonattribute that implement IModel Modifier and Type Class Description class
CommonAttributeContentModel
The AEF 2.0 domain model for the common attribute content.Methods in com._1c.g5.v8.dt.md.ui.editor.aef.descriptor.commonattribute that return IModel Modifier and Type Method Description protected IModel
CommonAttributeContentModelFactory. createSingleModel(EObjectFeature objectFeature)
-
Uses of IModel in com._1c.g5.v8.dt.md.ui.editor.aef.descriptor.configuration
Classes in com._1c.g5.v8.dt.md.ui.editor.aef.descriptor.configuration that implement IModel Modifier and Type Class Description class
ConfigurationStandaloneContentModel
The AEF 2.0 component for the configuration standalone content.Methods in com._1c.g5.v8.dt.md.ui.editor.aef.descriptor.configuration that return IModel Modifier and Type Method Description IModel
ConfigurationStandaloneContentModelFactory. createModel(IDefinition definition, org.eclipse.emf.ecore.EObject... objects)
-
Uses of IModel in com._1c.g5.v8.dt.md.ui.editor.aef.descriptor.dataexchange
Classes in com._1c.g5.v8.dt.md.ui.editor.aef.descriptor.dataexchange that implement IModel Modifier and Type Class Description class
DataExchangeModel
DtGranularEditor
data exchande model.Methods in com._1c.g5.v8.dt.md.ui.editor.aef.descriptor.dataexchange that return IModel Modifier and Type Method Description protected IModel
DtGranularEditorDataExchangePageDescriptor. createDataExchangeModel(org.eclipse.emf.ecore.EObject[] objs)
Creates data exchange model. -
Uses of IModel in com._1c.g5.v8.dt.md.ui.editor.aef.descriptor.exchangeplan
Classes in com._1c.g5.v8.dt.md.ui.editor.aef.descriptor.exchangeplan that implement IModel Modifier and Type Class Description class
ExchangePlanContentModel
The AEF 2.0 component for the exchange plan content.Methods in com._1c.g5.v8.dt.md.ui.editor.aef.descriptor.exchangeplan that return IModel Modifier and Type Method Description IModel
ExchangePlanContentModelFactory. createModel(IDefinition definition, org.eclipse.emf.ecore.EObject... objects)
-
Uses of IModel in com._1c.g5.v8.dt.md.ui.extension.aef.models
Classes in com._1c.g5.v8.dt.md.ui.extension.aef.models that implement IModel Modifier and Type Class Description class
CommonAttributeAutoUsePropertyStateModel
CustomPropertyStateModel
implementation forCommonAttributeAutoUse
propertyclass
CommonAttributeDataSeparationPropertyStateModel
CustomPropertyStateModel
implementation forCommonAttributeDataSeparation
propertyclass
ExtendedConfigurationObjectPropertyStateModel
CustomPropertyStateModel
for edit property state without value change side effectsclass
FormPropertyStateModel
AEF model for metadata property state for forms that also adopts original form or generates a new one on "extend" state change.class
PropertyStateModel
AEF model for metadata property state.Methods in com._1c.g5.v8.dt.md.ui.extension.aef.models that return IModel Modifier and Type Method Description IModel
MdExtensionPropertiesModelFactory. createModel(IDefinition definition, org.eclipse.emf.ecore.EObject... objects)
-
Uses of IModel in com._1c.g5.v8.dt.md.ui.extension.aef.models.type
Subinterfaces of IModel in com._1c.g5.v8.dt.md.ui.extension.aef.models.type Modifier and Type Interface Description interface
ITypeDescriptionExtensionModel
AEF model forTypeDescriptionExtension
editor -
Uses of IModel in com._1c.g5.v8.dt.md.ui.properties.models
Classes in com._1c.g5.v8.dt.md.ui.properties.models that implement IModel Modifier and Type Class Description class
MdPropertyPaletteModel
Implementation ofPropertyPaletteModel
containing EDT specific logic.class
SimpleGroupValue<T>
The group model.Methods in com._1c.g5.v8.dt.md.ui.properties.models that return IModel Modifier and Type Method Description protected IModel
ModelFactory. createGroupModel(IFieldDefinition definition, org.eclipse.emf.ecore.EObject... objects)
protected IModel
ModelFactory. createSingleModel(EObjectFeature objectFeature)
-
Uses of IModel in com._1c.g5.v8.dt.md.ui.wizards
Classes in com._1c.g5.v8.dt.md.ui.wizards that implement IModel Modifier and Type Class Description static class
AbstractDependentProjectWizard.DependentWizardModel<M extends MdObject>
Dependent wizard model instance.static class
AbstractProjectWizard.WizardModel<M extends MdObject>
Dependent wizard model instance.Methods in com._1c.g5.v8.dt.md.ui.wizards that return IModel Modifier and Type Method Description protected IModel
AbstractProjectWizard. getModelForPageComponent(NewWizardPageComponent<?> component)
protected IModel
CharacteristicsDescriptionWizard. getModelForPageComponent(NewWizardPageComponent<?> component)
protected IModel
PredefinedItemWizard. getModelForPageComponent(NewWizardPageComponent<?> component)
-
Uses of IModel in com._1c.g5.v8.dt.md.ui.wizards.aef.models
Subinterfaces of IModel in com._1c.g5.v8.dt.md.ui.wizards.aef.models Modifier and Type Interface Description interface
ICharacteristicsDescriptionModel
Model contract forCharacteristicsDescription
-based wizards.interface
IMdObjectModel
Model contract forMdObject
-based wizards.interface
IMdTypedObjectModel
Model contract forMdObject
-based wizards with possibility to edit additional features.interface
IPredefinedAccountModel
Model contract forChartOfAccountsPredefinedItem
-based wizards.interface
IPredefinedCalculationTypeModel
Model contract forChartOfCalculationTypesPredefinedItem
-based wizards.interface
IPredefinedCharacteristicTypeModel
Model contract forChartOfCharacteristicTypesPredefinedItem
-based wizards.interface
IPredefinedItemModel
Model contract forPredefinedItem
-based wizards.Methods in com._1c.g5.v8.dt.md.ui.wizards.aef.models that return types with arguments of type IModel Modifier and Type Method Description Map<org.eclipse.emf.ecore.EStructuralFeature,IModel>
IMdTypedObjectModel. getAdditionalModels()
Map<org.eclipse.emf.ecore.EStructuralFeature,IModel>
MdTypedObjectModel. getAdditionalModels()
-
Uses of IModel in com._1c.g5.v8.dt.md.ui.wizards.base.aef
Classes in com._1c.g5.v8.dt.md.ui.wizards.base.aef with type parameters of type IModel Modifier and Type Class Description class
DtAefNewWizardPage<T extends IModel,M extends org.eclipse.emf.ecore.EObject>
Base class for wizard pages that is constructed using AEF.class
NewWizardPageComponent<M extends IModel>
Base class for AEF wizard page componentsMethods in com._1c.g5.v8.dt.md.ui.wizards.base.aef that return IModel Modifier and Type Method Description protected IModel
DtAefMdNewWizard. getModelForPageComponent(NewWizardPageComponent<?> component)
protected IModel
DtAefNewWizard. getModelForPageComponent(NewWizardPageComponent<?> component)
Returns AEF model for the given component.Method parameters in com._1c.g5.v8.dt.md.ui.wizards.base.aef with type arguments of type IModel Modifier and Type Method Description org.eclipse.jface.wizard.IWizardPage
DtAefNewWizard. addPage(NewWizardPageComponent<? extends IModel> pageComponent)
Adds a given wizard page component to wizard. -
Uses of IModel in com._1c.g5.v8.dt.ui.aef.component
Classes in com._1c.g5.v8.dt.ui.aef.component with type parameters of type IModel Modifier and Type Class Description class
AbstractDtActionBarComponent<M extends IModel,P extends IDtActionBarParameterization>
Base component for components that works with model that can be represented as string.class
AbstractDtColorActionBarComponent<M extends IModel,P extends IDtActionBarParameterization>
TheAbstractDtReadonlyActionBarComponent
implementation for controls that displays color within the text box.class
AbstractDtReadonlyActionBarComponent<M extends IModel,P extends IDtActionBarParameterization>
TheAbstractDtActionBarComponent
with the read-only editor.class
AbstractDtSelectComponent<M extends IModel,P extends IParameterization,VM extends SelectViewModel>
Base component for components that allow to select new value with feasible buttons in action bar.class
AbstractSelectionActionBarComponent<M extends IModel,P extends ISelectionParameterization>
TheAbstractDtReadonlyActionBarComponent
implementation that allows to select values from dialog.class
AbstractTabFolderComponent<M extends IModel,P extends IParameterization>
The tab folder component.class
DialogWithToolbarComponent<M extends IModel,P extends IDialogParametrization>
Dialog component with toolbar.class
TextPreviewComponent<M extends IModel>
Component for displaying text with given color and font properties.Subinterfaces of IModel in com._1c.g5.v8.dt.ui.aef.component Modifier and Type Interface Description interface
IUnsettablePropertyFieldModel<T,O extends org.eclipse.emf.ecore.EObject>
Unsettable property field model.Methods in com._1c.g5.v8.dt.ui.aef.component with parameters of type IModel Modifier and Type Method Description protected void
DtPictureComponent. updateViewModelStatus(ControlViewModel viewModel, IModel model)
-
Uses of IModel in com._1c.g5.v8.dt.ui.aef.models
Subinterfaces of IModel in com._1c.g5.v8.dt.ui.aef.models Modifier and Type Interface Description interface
IAbstractMobileApplicationUrlsModel<T extends AbstractMobileApplicationUrl>
TheAbstractMobileApplicationUrl
s model.interface
IBorderValueModel
The Border value modelinterface
IChoiceParameterLinksModel<T extends AbstractChoiceParameterLink,U>
The contract for Choice parameter links models.interface
IDynamicTableModel
The contract for dynamic table model.interface
IDynamicTreeModel<T>
The contract for dynamic tree model.interface
IEmfListSelectionModel<T,O extends org.eclipse.emf.ecore.EObject>
The model interface forListSelectionComponent
.interface
IEmfSelectionModel<O extends org.eclipse.emf.ecore.EObject>
The model interface forAbstractSelectionComponent
.interface
IEmfTreeSelectionModel<O extends org.eclipse.emf.ecore.EObject>
interface
IEmfTreeToListSelectionModel<T,O extends org.eclipse.emf.ecore.EObject>
The model interface forTreeToListSelectionComponent
.interface
IEmfTreeToSingleItemSelectionModel<T,O extends org.eclipse.emf.ecore.EObject>
The model interface forTreeToSingleItemSelectionComponent
.interface
IEmfValueSelectionModel<T,O extends org.eclipse.emf.ecore.EObject>
The model interface forValueSelectionComponent
.interface
IGridModel<T>
The model for grid component.interface
ISelectionModel
The model interface forAbstractSelectionComponent
.interface
ITypeLinkModel<T extends AbstractTypeLink,U>
The contract for type link models.Classes in com._1c.g5.v8.dt.ui.aef.models that implement IModel Modifier and Type Class Description class
AbstractDtDynamicTreeModel<T>
Abstract implementation forIDynamicTreeModel
.class
BmListSelectionModel<T>
The BmIEmfListSelectionModel
implementation.class
BmTreeToListSelectionModel<T>
TheIEmfTreeSelectionModel
implementation.class
BmTreeToSingleItemSelectionModel<T>
TheIEmfTreeSelectionModel
implementation for single item selection.class
BmUnsettablePropertyFieldModel<T>
AEF model for unsettable property field.class
BmValueSelectionModel<T>
The BmIEmfValueSelectionModel
implementation.class
BmVersionedValue<T>
Represents a version-aware BM object feature value.class
EmfListSelectionModel<T>
The EmfIEmfListSelectionModel
implementation.class
EmfTreeToListSelectionModel<T>
TheIEmfTreeSelectionModel
implementation.class
EmfTreeToSingleItemSelectionModel<T>
TheIEmfTreeToSingleItemSelectionModel
implementation for single item selection.class
EmfUnsettablePropertyFieldModel<T>
Emf model for unsettable property field.class
EmfValueSelectionModel<T>
TheIEmfValueSelectionModel
implementation.class
EmfVersionedValue<T>
Represents a version-aware EMF object feature value.class
NavigatorTableModel
TheIDynamicTableModel
implementation for navigator objects.class
NavigatorTreeModel
TheIDynamicTreeModel
implementation for navigator objects. -
Uses of IModel in com._1c.g5.v8.dt.ui.editor.aef
Classes in com._1c.g5.v8.dt.ui.editor.aef that implement IModel Modifier and Type Class Description class
DtGranularEditorPageDefinitionModel
The model for AEF 2.0 granular editor page. -
Uses of IModel in com._1c.g5.v8.dt.ui.editor.aef.model
Subinterfaces of IModel in com._1c.g5.v8.dt.ui.editor.aef.model Modifier and Type Interface Description interface
IDtGranularEditorManagingModel
TheIManagingModel
for granular editors managing components.Classes in com._1c.g5.v8.dt.ui.editor.aef.model that implement IModel Modifier and Type Class Description class
AbstractDtGranularEditorManagingModel
TheIDtGranularEditorManagingModel
abstract implmentation. -
Uses of IModel in com._1c.g5.v8.dt.xdto.ui.aef.models
Subinterfaces of IModel in com._1c.g5.v8.dt.xdto.ui.aef.models Modifier and Type Interface Description interface
IDynamicTreeModelWithAtribiteAndOwner<T extends org.eclipse.emf.ecore.EObject>
The contract for dynamic tree model with attribute and owner object.Classes in com._1c.g5.v8.dt.xdto.ui.aef.models that implement IModel Modifier and Type Class Description class
PackageDataModel
Package tree component model.Methods in com._1c.g5.v8.dt.xdto.ui.aef.models that return IModel Modifier and Type Method Description static IModel
XdtoUiUtil. createModel(org.eclipse.emf.ecore.EObject object, org.eclipse.emf.ecore.EStructuralFeature feature)
CreatesIModel
instance by the given arguments. -
Uses of IModel in com.e1c.g5.dt.applications.ui.editor.aef.models
Subinterfaces of IModel in com.e1c.g5.dt.applications.ui.editor.aef.models Modifier and Type Interface Description interface
IRadioGroupModel<T>
The AEF 2.0 model for radio group component.interface
ITreeModel
The interface of model for tree component.
-