Humboldt Alignment Editor 2.5.0

Uses of Interface
eu.esdihumboldt.hale.common.align.model.EntityDefinition

Packages that use EntityDefinition
eu.esdihumboldt.hale.common.align.io.impl.internal   
eu.esdihumboldt.hale.common.align.model   
eu.esdihumboldt.hale.common.align.model.impl   
eu.esdihumboldt.hale.common.align.model.transformation.tree   
eu.esdihumboldt.hale.common.align.model.transformation.tree.context.impl   
eu.esdihumboldt.hale.common.align.model.transformation.tree.impl   
eu.esdihumboldt.hale.ui.common.definition   
eu.esdihumboldt.hale.ui.common.definition.selector   
eu.esdihumboldt.hale.ui.common.service.population   
eu.esdihumboldt.hale.ui.function.common   
eu.esdihumboldt.hale.ui.function.contribution   
eu.esdihumboldt.hale.ui.function.generic.pages   
eu.esdihumboldt.hale.ui.function.generic.pages.internal   
eu.esdihumboldt.hale.ui.functions.core   
eu.esdihumboldt.hale.ui.functions.groovy   
eu.esdihumboldt.hale.ui.functions.numeric   
eu.esdihumboldt.hale.ui.geometry   
eu.esdihumboldt.hale.ui.selection   
eu.esdihumboldt.hale.ui.selection.impl   
eu.esdihumboldt.hale.ui.service.entity   
eu.esdihumboldt.hale.ui.service.entity.internal   
eu.esdihumboldt.hale.ui.service.population.internal   
 

Uses of EntityDefinition in eu.esdihumboldt.hale.common.align.io.impl.internal
 

Classes in eu.esdihumboldt.hale.common.align.io.impl.internal with type parameters of type EntityDefinition
 class EntityBean<T extends EntityDefinition>
          Represents an Entity
 

Uses of EntityDefinition in eu.esdihumboldt.hale.common.align.model
 

Methods in eu.esdihumboldt.hale.common.align.model that return EntityDefinition
static EntityDefinition AlignmentUtil.createEntity(TypeDefinition type, List<ChildContext> path, SchemaSpaceID schemaSpace, Filter filter)
          Create an entity definition from a type and a child path.
static EntityDefinition AlignmentUtil.deriveEntity(EntityDefinition entity, int pathLength)
          Derive an entity definition from the given one but with a maximum path length.
static EntityDefinition AlignmentUtil.getAllDefaultEntity(EntityDefinition entity)
          Get the entity definition based on the given entity definition with the default instance context for each path entry.
static EntityDefinition AlignmentUtil.getChild(EntityDefinition entity, QName childName)
          Get the default child of the given entity.
static EntityDefinition AlignmentUtil.getDefaultEntity(EntityDefinition entity)
          Get the entity definition with the default instance context which is a sibling to (or the same as) the given entity definition.
 EntityDefinition Entity.getDefinition()
          Get the entity definition.
static EntityDefinition AlignmentUtil.getParent(EntityDefinition entity)
          Get the parent entity definition for the given entity definition.
 

Methods in eu.esdihumboldt.hale.common.align.model with parameters of type EntityDefinition
static EntityDefinition AlignmentUtil.deriveEntity(EntityDefinition entity, int pathLength)
          Derive an entity definition from the given one but with a maximum path length.
static boolean AlignmentUtil.entityOrChildContained(EntityDefinition entity, Iterable<? extends Entity> candidates)
          Determines if the given entity definition or one of its children is contained in the given entity candidates.
static boolean AlignmentUtil.entityOrChildMapped(EntityDefinition entity, Alignment alignment)
          States if the given entity definition or one of its children is mapped in the given alignment.
static EntityDefinition AlignmentUtil.getAllDefaultEntity(EntityDefinition entity)
          Get the entity definition based on the given entity definition with the default instance context for each path entry.
 Collection<? extends Cell> Alignment.getCells(EntityDefinition entityDefinition)
          Get the cells associated w/ the given entity definition.
static EntityDefinition AlignmentUtil.getChild(EntityDefinition entity, QName childName)
          Get the default child of the given entity.
static Condition AlignmentUtil.getContextCondition(EntityDefinition candidate)
          Get the context condition of the given entity definition.
static Integer AlignmentUtil.getContextIndex(EntityDefinition candidate)
          Get the context index of the given entity definition.
static Integer AlignmentUtil.getContextName(EntityDefinition candidate)
          Get the context name of the given entity definition.
static String AlignmentUtil.getContextText(EntityDefinition entityDef)
          Get a text representation for the entity definition context.
static EntityDefinition AlignmentUtil.getDefaultEntity(EntityDefinition entity)
          Get the entity definition with the default instance context which is a sibling to (or the same as) the given entity definition.
static EntityDefinition AlignmentUtil.getParent(EntityDefinition entity)
          Get the parent entity definition for the given entity definition.
static TypeEntityDefinition AlignmentUtil.getTypeEntity(EntityDefinition entityDef)
          Get the type entity definition of the given entity definition.
static boolean AlignmentUtil.isDefaultEntity(EntityDefinition entity)
          Determines if the given entity is a default entity.
static boolean AlignmentUtil.isParent(EntityDefinition parent, EntityDefinition child)
          Determines if a given entity definition is a parent of another entity definition.
 

Uses of EntityDefinition in eu.esdihumboldt.hale.common.align.model.impl
 

Classes in eu.esdihumboldt.hale.common.align.model.impl that implement EntityDefinition
 class ChildEntityDefinition
          Entity definition for a property or group property
 class PropertyEntityDefinition
          Entity definition for a property
 class TypeEntityDefinition
          Entity definition for a type
 

Methods in eu.esdihumboldt.hale.common.align.model.impl with parameters of type EntityDefinition
 Collection<? extends Cell> DefaultAlignment.getCells(EntityDefinition entityDefinition)
           
 

Uses of EntityDefinition in eu.esdihumboldt.hale.common.align.model.transformation.tree
 

Methods in eu.esdihumboldt.hale.common.align.model.transformation.tree that return EntityDefinition
 EntityDefinition SourceNode.getEntityDefinition()
          Get the full entity definition associated with the node.
 EntityDefinition TargetNode.getEntityDefinition()
          Get the full entity definition associated with the node.
 

Uses of EntityDefinition in eu.esdihumboldt.hale.common.align.model.transformation.tree.context.impl
 

Methods in eu.esdihumboldt.hale.common.align.model.transformation.tree.context.impl with parameters of type EntityDefinition
 TargetNodeImpl TargetContext.DuplicationContext.getNode(EntityDefinition entity)
          Get the target node associated to the given entity.
 

Uses of EntityDefinition in eu.esdihumboldt.hale.common.align.model.transformation.tree.impl
 

Methods in eu.esdihumboldt.hale.common.align.model.transformation.tree.impl that return EntityDefinition
 EntityDefinition SourceNodeImpl.getEntityDefinition()
           
 EntityDefinition TargetNodeImpl.getEntityDefinition()
           
 

Methods in eu.esdihumboldt.hale.common.align.model.transformation.tree.impl with parameters of type EntityDefinition
 SourceNode SourceNodeFactory.getExistingSourceNode(EntityDefinition entityDefinition)
          Get the existing source node associated to the given entity definition.
 SourceNode SourceNodeFactory.getSourceNode(EntityDefinition entityDefinition)
          Get or create source node for the given entity definition.
 

Constructors in eu.esdihumboldt.hale.common.align.model.transformation.tree.impl with parameters of type EntityDefinition
SourceNodeImpl(EntityDefinition definition, SourceNode parent, boolean addToParent)
          Constructor for nodes not associated to a source node factory.
SourceNodeImpl(EntityDefinition definition, SourceNodeFactory sourceNodeFactory)
          Constructor
TargetNodeImpl(EntityDefinition entity, Collection<CellNode> cells, TypeDefinition parentType, int depth, GroupNode parent)
          Create a target node that is populated with assignments and children according to the given parameters.
TargetNodeImpl(EntityDefinition entity, GroupNode parent)
          Create a target node associated with the given entity definition but unpopulated.
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.common.definition
 

Methods in eu.esdihumboldt.hale.ui.common.definition with parameters of type EntityDefinition
 org.eclipse.swt.graphics.Image DefinitionImages.getImage(EntityDefinition entityDef)
          Get the image for the given entity definition
protected  org.eclipse.swt.graphics.Image DefinitionImages.getImage(EntityDefinition entityDef, Definition<?> def)
          Get the image for the given definition
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.common.definition.selector
 

Methods in eu.esdihumboldt.hale.ui.common.definition.selector that return EntityDefinition
protected  EntityDefinition PropertyDefinitionDialog.getObjectFromSelection(org.eclipse.jface.viewers.ISelection selection)
           
 

Methods in eu.esdihumboldt.hale.ui.common.definition.selector that return types with arguments of type EntityDefinition
protected  AbstractViewerSelectionDialog<EntityDefinition,?> PropertyDefinitionSelector.createSelectionDialog(org.eclipse.swt.widgets.Shell parentShell)
           
 

Methods in eu.esdihumboldt.hale.ui.common.definition.selector with parameters of type EntityDefinition
protected  void PropertyDefinitionDialog.setupViewer(org.eclipse.jface.viewers.TreeViewer viewer, EntityDefinition initialSelection)
           
 

Constructors in eu.esdihumboldt.hale.ui.common.definition.selector with parameters of type EntityDefinition
PropertyDefinitionDialog(org.eclipse.swt.widgets.Shell parentShell, SchemaSpaceID ssid, TypeDefinition parentType, String title, EntityDefinition initialSelection)
          Create a property entity dialog
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.common.service.population
 

Methods in eu.esdihumboldt.hale.ui.common.service.population with parameters of type EntityDefinition
 Population PopulationService.getPopulation(EntityDefinition entity)
          Get the population count for the given entity.
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.function.common
 

Methods in eu.esdihumboldt.hale.ui.function.common that return EntityDefinition
protected  EntityDefinition TypeEntityDialog.getObjectFromSelection(org.eclipse.jface.viewers.ISelection selection)
           
protected  EntityDefinition PropertyEntityDialog.getObjectFromSelection(org.eclipse.jface.viewers.ISelection selection)
           
 

Methods in eu.esdihumboldt.hale.ui.function.common that return types with arguments of type EntityDefinition
protected  AbstractViewerSelectionDialog<EntityDefinition,?> EntitySelector.createSelectionDialog(org.eclipse.swt.widgets.Shell parentShell)
           
 

Methods in eu.esdihumboldt.hale.ui.function.common with parameters of type EntityDefinition
protected abstract  Entity EntitySelector.createEntity(EntityDefinition element)
          Create an entity for the given entity definition
protected  Entity TypeEntitySelector.createEntity(EntityDefinition element)
           
protected  Entity PropertyEntitySelector.createEntity(EntityDefinition element)
           
protected  void TypeEntityDialog.setupViewer(org.eclipse.jface.viewers.TreeViewer viewer, EntityDefinition initialSelection)
           
protected  void PropertyEntityDialog.setupViewer(org.eclipse.jface.viewers.TreeViewer viewer, EntityDefinition initialSelection)
           
 

Constructors in eu.esdihumboldt.hale.ui.function.common with parameters of type EntityDefinition
EntityDialog(org.eclipse.swt.widgets.Shell parentShell, SchemaSpaceID ssid, String title, EntityDefinition initialSelection)
          Constructor
PropertyEntityDialog(org.eclipse.swt.widgets.Shell parentShell, SchemaSpaceID ssid, TypeEntityDefinition parentType, String title, EntityDefinition initialSelection)
          Create a property entity dialog
TypeEntityDialog(org.eclipse.swt.widgets.Shell parentShell, SchemaSpaceID ssid, String title, EntityDefinition initialSelection)
           
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.function.contribution
 

Method parameters in eu.esdihumboldt.hale.ui.function.contribution with type arguments of type EntityDefinition
protected  boolean ReplaceFunctionWizardContribution.checkMandatoryConditions(Set<EntityDefinition> schemaEntities, Iterable<? extends AbstractParameter> functionEntities)
           
protected  boolean SchemaSelectionFunctionContribution.checkMandatoryConditions(Set<EntityDefinition> schemaEntities, Iterable<? extends AbstractParameter> functionEntities)
          Checks if all entities that are mandatory in the function definition and have specific attached conditions can be met by at least one of the given schema entities.
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.function.generic.pages
 

Methods in eu.esdihumboldt.hale.ui.function.generic.pages that return types with arguments of type EntityDefinition
protected  Set<EntityDefinition> EntitiesPage.getCandidates(SchemaSpaceID ssid)
          Get the entity candidates for the given schema space
 

Method parameters in eu.esdihumboldt.hale.ui.function.generic.pages with type arguments of type EntityDefinition
protected abstract  F EntitiesPage.createField(D field, SchemaSpaceID ssid, org.eclipse.swt.widgets.Composite parent, Set<EntityDefinition> candidates, Cell initialCell)
          Create entity assignment fields for the given field definition
protected  PropertyField PropertyEntitiesPage.createField(PropertyParameter field, SchemaSpaceID ssid, org.eclipse.swt.widgets.Composite parent, Set<EntityDefinition> candidates, Cell initialCell)
           
protected  TypeField TypeEntitiesPage.createField(TypeParameter field, SchemaSpaceID ssid, org.eclipse.swt.widgets.Composite parent, Set<EntityDefinition> candidates, Cell initialCell)
           
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.function.generic.pages.internal
 

Constructor parameters in eu.esdihumboldt.hale.ui.function.generic.pages.internal with type arguments of type EntityDefinition
Field(F definition, SchemaSpaceID ssid, org.eclipse.swt.widgets.Composite parent, Set<EntityDefinition> candidates, Cell initialCell)
          Create a field
PropertyField(PropertyParameter definition, SchemaSpaceID ssid, org.eclipse.swt.widgets.Composite parent, Set<EntityDefinition> candidates, Cell initialCell, TypeEntityDefinition parentType)
          Create a property field
TypeField(TypeParameter definition, SchemaSpaceID ssid, org.eclipse.swt.widgets.Composite parent, Set<EntityDefinition> candidates, Cell initialCell)
           
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.functions.core
 

Methods in eu.esdihumboldt.hale.ui.functions.core with parameters of type EntityDefinition
protected  String FormattedStringParameterPage.getVariableName(EntityDefinition variable)
           
protected  String SourceListParameterPage.getVariableName(EntityDefinition variable)
          This gets called for all variables.
Subclasses can change how they are displayed here.
The default format is like "part1.part2.name".
protected  void SourceListParameterPage.sourcePropertiesChanged(EntityDefinition[] variables)
          This gets called, when the user chose other source properties.
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.functions.groovy
 

Methods in eu.esdihumboldt.hale.ui.functions.groovy with parameters of type EntityDefinition
protected  String GroovyParameterPage.getVariableName(EntityDefinition variable)
           
protected  void GroovyParameterPage.sourcePropertiesChanged(EntityDefinition[] variables)
           
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.functions.numeric
 

Methods in eu.esdihumboldt.hale.ui.functions.numeric with parameters of type EntityDefinition
protected  void MathExpressionParameterPage.sourcePropertiesChanged(EntityDefinition[] variables)
           
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.geometry
 

Methods in eu.esdihumboldt.hale.ui.geometry with parameters of type EntityDefinition
static boolean DefaultGeometryUtil.isDefaultGeometry(EntityDefinition entityDef)
          Determines if the given entity definition is a default geometry property.
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.selection
 

Methods in eu.esdihumboldt.hale.ui.selection that return EntityDefinition
 EntityDefinition SchemaSelection.getFirstItem(SchemaSpaceID schema)
          Get the first selected item of the given schema
 EntityDefinition SchemaSelection.getFirstSourceItem()
          Get the first selected source item
 EntityDefinition SchemaSelection.getFirstTargetItem()
          Get the first selected target item
 

Methods in eu.esdihumboldt.hale.ui.selection that return types with arguments of type EntityDefinition
 Set<EntityDefinition> SchemaSelection.getSourceItems()
           
 Set<EntityDefinition> SchemaSelection.getTargetItems()
           
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.selection.impl
 

Methods in eu.esdihumboldt.hale.ui.selection.impl that return EntityDefinition
 EntityDefinition DefaultSchemaSelection.getFirstItem(SchemaSpaceID schema)
           
 EntityDefinition DefaultSchemaSelection.getFirstSourceItem()
           
 EntityDefinition DefaultSchemaSelection.getFirstTargetItem()
           
 

Methods in eu.esdihumboldt.hale.ui.selection.impl that return types with arguments of type EntityDefinition
 Set<EntityDefinition> DefaultSchemaSelection.getSourceItems()
           
 Set<EntityDefinition> DefaultSchemaSelection.getTargetItems()
           
 List<EntityDefinition> DefaultSchemaSelection.toList()
           
 

Methods in eu.esdihumboldt.hale.ui.selection.impl with parameters of type EntityDefinition
 void DefaultSchemaSelection.addSourceItem(EntityDefinition item)
          Adds a source item
 void DefaultSchemaSelection.addTargetItem(EntityDefinition item)
          Adds a target item
 

Constructor parameters in eu.esdihumboldt.hale.ui.selection.impl with type arguments of type EntityDefinition
DefaultSchemaSelection(Collection<EntityDefinition> sourceItems, Collection<EntityDefinition> targetItems, DefaultSchemaSelection.SchemaStructuredMode mode)
          Creates a selection that is initialized with the given items
DefaultSchemaSelection(Collection<EntityDefinition> sourceItems, Collection<EntityDefinition> targetItems, DefaultSchemaSelection.SchemaStructuredMode mode)
          Creates a selection that is initialized with the given items
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.service.entity
 

Methods in eu.esdihumboldt.hale.ui.service.entity that return EntityDefinition
 EntityDefinition EntityDefinitionService.addConditionContext(EntityDefinition sibling, Filter filter)
          Add a new condition context for the given entity definition and create a new sibling associated to the new context.
 EntityDefinition EntityDefinitionService.addIndexContext(EntityDefinition sibling, Integer index)
          Add a new index context for the given entity definition and create a new sibling associated to the new context.
 EntityDefinition EntityDefinitionService.addNamedContext(EntityDefinition sibling)
          Add a new named instance context for the given entity definition and create a new sibling associated to the new context.
 EntityDefinition EntityDefinitionService.getParent(EntityDefinition entity)
          Get the parent entity definition for the given entity definition.
 

Methods in eu.esdihumboldt.hale.ui.service.entity that return types with arguments of type EntityDefinition
 Collection<? extends EntityDefinition> EntityDefinitionService.getChildren(EntityDefinition entity)
          Get the children of the given entity definition, i.e.
 

Methods in eu.esdihumboldt.hale.ui.service.entity with parameters of type EntityDefinition
 EntityDefinition EntityDefinitionService.addConditionContext(EntityDefinition sibling, Filter filter)
          Add a new condition context for the given entity definition and create a new sibling associated to the new context.
 EntityDefinition EntityDefinitionService.addIndexContext(EntityDefinition sibling, Integer index)
          Add a new index context for the given entity definition and create a new sibling associated to the new context.
 EntityDefinition EntityDefinitionService.addNamedContext(EntityDefinition sibling)
          Add a new named instance context for the given entity definition and create a new sibling associated to the new context.
 void EntityDefinitionServiceListener.contextAdded(EntityDefinition contextEntity)
          Called when a new instance context has been added.
 void EntityDefinitionServiceListener.contextRemoved(EntityDefinition contextEntity)
          Called when an instance context has been removed.
 Collection<? extends EntityDefinition> EntityDefinitionService.getChildren(EntityDefinition entity)
          Get the children of the given entity definition, i.e.
 EntityDefinition EntityDefinitionService.getParent(EntityDefinition entity)
          Get the parent entity definition for the given entity definition.
 void EntityDefinitionService.removeContext(EntityDefinition entity)
          Remove the instance context associated with the given entity definition (if possible).
 

Method parameters in eu.esdihumboldt.hale.ui.service.entity with type arguments of type EntityDefinition
 void EntityDefinitionServiceListener.contextsAdded(Iterable<EntityDefinition> contextEntities)
          Called when multiple new instance contexts have been added.
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.service.entity.internal
 

Methods in eu.esdihumboldt.hale.ui.service.entity.internal that return EntityDefinition
 EntityDefinition EntityDefinitionServiceImpl.addConditionContext(EntityDefinition sibling, Filter filter)
           
 EntityDefinition EntityDefinitionServiceUndoSupport.addConditionContext(EntityDefinition sibling, Filter filter)
           
 EntityDefinition EntityDefinitionServiceDecorator.addConditionContext(EntityDefinition sibling, Filter filter)
           
 EntityDefinition EntityDefinitionServiceImpl.addIndexContext(EntityDefinition sibling, Integer index)
           
 EntityDefinition EntityDefinitionServiceUndoSupport.addIndexContext(EntityDefinition sibling, Integer index)
           
 EntityDefinition EntityDefinitionServiceDecorator.addIndexContext(EntityDefinition sibling, Integer index)
           
 EntityDefinition EntityDefinitionServiceImpl.addNamedContext(EntityDefinition sibling)
           
 EntityDefinition EntityDefinitionServiceUndoSupport.addNamedContext(EntityDefinition sibling)
           
 EntityDefinition EntityDefinitionServiceDecorator.addNamedContext(EntityDefinition sibling)
           
protected  EntityDefinition AbstractEntityDefinitionService.createEntity(TypeDefinition type, List<ChildContext> path, SchemaSpaceID schemaSpace, Filter filter)
          Create an entity definition from a type and a child path
 EntityDefinition AbstractEntityDefinitionService.getParent(EntityDefinition entity)
           
 EntityDefinition EntityDefinitionServiceDecorator.getParent(EntityDefinition entity)
           
 

Methods in eu.esdihumboldt.hale.ui.service.entity.internal that return types with arguments of type EntityDefinition
 Collection<? extends EntityDefinition> EntityDefinitionServiceImpl.getChildren(EntityDefinition entity)
           
 Collection<? extends EntityDefinition> EntityDefinitionServiceDecorator.getChildren(EntityDefinition entity)
           
 

Methods in eu.esdihumboldt.hale.ui.service.entity.internal with parameters of type EntityDefinition
 EntityDefinition EntityDefinitionServiceImpl.addConditionContext(EntityDefinition sibling, Filter filter)
           
 EntityDefinition EntityDefinitionServiceUndoSupport.addConditionContext(EntityDefinition sibling, Filter filter)
           
 EntityDefinition EntityDefinitionServiceDecorator.addConditionContext(EntityDefinition sibling, Filter filter)
           
 EntityDefinition EntityDefinitionServiceImpl.addIndexContext(EntityDefinition sibling, Integer index)
           
 EntityDefinition EntityDefinitionServiceUndoSupport.addIndexContext(EntityDefinition sibling, Integer index)
           
 EntityDefinition EntityDefinitionServiceDecorator.addIndexContext(EntityDefinition sibling, Integer index)
           
 EntityDefinition EntityDefinitionServiceImpl.addNamedContext(EntityDefinition sibling)
           
 EntityDefinition EntityDefinitionServiceUndoSupport.addNamedContext(EntityDefinition sibling)
           
 EntityDefinition EntityDefinitionServiceDecorator.addNamedContext(EntityDefinition sibling)
           
 Collection<? extends EntityDefinition> EntityDefinitionServiceImpl.getChildren(EntityDefinition entity)
           
 Collection<? extends EntityDefinition> EntityDefinitionServiceDecorator.getChildren(EntityDefinition entity)
           
 EntityDefinition AbstractEntityDefinitionService.getParent(EntityDefinition entity)
           
 EntityDefinition EntityDefinitionServiceDecorator.getParent(EntityDefinition entity)
           
 void AbstractEntityDefinitionService.notifyContextAdded(EntityDefinition contextEntity)
          Called when a new instance context has been added.
 void AbstractEntityDefinitionService.notifyContextRemoved(EntityDefinition contextEntity)
          Called when an instance context has been removed.
 void EntityDefinitionServiceImpl.removeContext(EntityDefinition entity)
           
 void EntityDefinitionServiceUndoSupport.removeContext(EntityDefinition entity)
           
 void EntityDefinitionServiceDecorator.removeContext(EntityDefinition entity)
           
 

Method parameters in eu.esdihumboldt.hale.ui.service.entity.internal with type arguments of type EntityDefinition
 void AbstractEntityDefinitionService.notifyContextsAdded(Iterable<EntityDefinition> contextEntities)
          Called when multiple new instance contexts have been added.
 

Uses of EntityDefinition in eu.esdihumboldt.hale.ui.service.population.internal
 

Methods in eu.esdihumboldt.hale.ui.service.population.internal with parameters of type EntityDefinition
 Population PopulationServiceImpl.getPopulation(EntityDefinition entity)
           
 


Humboldt Alignment Editor 2.5.0

Build 2012-12-03_12-30-59
Revision 9d2dd4b0318cda9f1393b1ddd390f7f792d70a2d