use of eu.esdihumboldt.hale.common.align.model.Condition in project hale by halestudio.
the class EntityDefinitionServiceImpl method getTypeEntities.
/**
* @see EntityDefinitionService#getTypeEntities(TypeDefinition,
* SchemaSpaceID)
*/
@Override
public Collection<? extends TypeEntityDefinition> getTypeEntities(TypeDefinition type, SchemaSpaceID schemaSpace) {
TypeEntityDefinition ted = new TypeEntityDefinition(type, schemaSpace, null);
Set<Condition> conditions;
synchronized (conditionContexts) {
conditions = conditionContexts.get(ted);
}
List<TypeEntityDefinition> result = new ArrayList<TypeEntityDefinition>();
// add default type entity
result.add(ted);
// type entity definitions with filters
for (Condition condition : conditions) {
result.add(new TypeEntityDefinition(type, schemaSpace, condition.getFilter()));
}
return result;
}
use of eu.esdihumboldt.hale.common.align.model.Condition in project hale by halestudio.
the class EditConditionContextHandler method execute.
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
ISelection selection = HandlerUtil.getCurrentSelection(event);
if (selection != null && !selection.isEmpty() && selection instanceof IStructuredSelection) {
Object element = ((IStructuredSelection) selection).getFirstElement();
if (element instanceof EntityDefinition) {
EntityDefinition entityDef = (EntityDefinition) element;
String title;
if (entityDef.getPropertyPath().isEmpty())
title = "Edit type condition";
else
title = "Edit property condition";
Condition condition = AlignmentUtil.getContextCondition(entityDef);
if (condition != null && condition.getFilter() != null) {
Pair<String, String> filterDef = FilterDefinitionManager.getInstance().asPair(condition.getFilter());
if (filterDef != null && filterDef.getFirst() != null) {
String filterId = filterDef.getFirst();
// retrieve filter UI from extension point
FilterDialogDefinition def = FilterUIExtension.getInstance().getFactory(filterId);
if (def != null) {
Filter filter = null;
try {
filter = def.createExtensionObject().openDialog(HandlerUtil.getActiveShell(event), entityDef, title, "Define the condition for the new context");
} catch (Exception e) {
log.userError("Failed to create editor for filter", e);
}
if (filter != null) {
EntityDefinitionService eds = PlatformUI.getWorkbench().getService(EntityDefinitionService.class);
eds.editConditionContext((EntityDefinition) element, filter);
}
} else {
log.userError("No editor for this kind of filter available");
}
} else {
log.error("No filter definition for filter found, definition ID could not be determined");
}
}
}
}
return null;
}
Aggregations