Search in sources :

Example 1 with Enumeration

use of org.obeonetwork.dsl.environment.Enumeration in project InformationSystem by ObeoNetwork.

the class EntityToMLD method createColumn.

private void createColumn(Attribute attribute, Table table) {
    // Try to retrieve existing column
    Column column = getFromInputTraceabilityMap(attribute, DatabasePackage.Literals.COLUMN);
    if (column != null) {
        // Ensure the column is in the right table
        if (!EcoreUtil.equals(table, column.getOwner())) {
            table.getColumns().add(column);
        }
    } else {
        // The column does not already exist, we have to create a new one
        column = DatabaseFactory.eINSTANCE.createColumn();
        table.getColumns().add(column);
    }
    // Add to the new traceability map
    addToOutputTraceability(attribute, column);
    // The following properties are modified even if they were already valued
    column.setName(LabelProvider.getColumnNameFromAttribute(attribute));
    column.setComments(attribute.getDescription());
    column.setDefaultValue(AnnotationHelper.getPhysicalDefault(attribute));
    boolean nullable = hasZeroAsLowerMultiplicityBound(attribute);
    column.setNullable(nullable);
    // Add to PK when needed
    if (attribute.isIsIdentifier()) {
        column.addToPrimaryKey();
        if (column.getComments() == null || column.getComments().length() == 0) {
            column.setComments(getPKColumnComment(column));
        }
    }
    if (attribute.getType() instanceof Enumeration) {
        handleEnumType(column, (Enumeration) attribute.getType(), table);
    } else {
        column.setType(resolveType(attribute.getType(), AnnotationHelper.getPhysicalSize(attribute)));
    }
}
Also used : Enumeration(org.obeonetwork.dsl.environment.Enumeration) Column(org.obeonetwork.dsl.database.Column)

Example 2 with Enumeration

use of org.obeonetwork.dsl.environment.Enumeration in project InformationSystem by ObeoNetwork.

the class EnumerationEnumerationPropertiesEditionComponent method initPart.

/**
 * {@inheritDoc}
 *
 * @see org.eclipse.emf.eef.runtime.api.component.IPropertiesEditionComponent#initPart(java.lang.Object, int, org.eclipse.emf.ecore.EObject,
 *      org.eclipse.emf.ecore.resource.ResourceSet)
 */
public void initPart(Object key, int kind, EObject elt, ResourceSet allResource) {
    setInitializing(true);
    if (editingPart != null && key == partKey) {
        editingPart.setContext(elt, allResource);
        final Enumeration enumeration = (Enumeration) elt;
        final EnumerationPropertiesEditionPart enumerationPart = (EnumerationPropertiesEditionPart) editingPart;
        // init values
        if (isAccessible(EnvironmentViewsRepository.Enumeration.Properties.name))
            enumerationPart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, enumeration.getName()));
        if (isAccessible(EnvironmentViewsRepository.Enumeration.Properties.literals)) {
            literalsSettings = new ReferencesTableSettings(enumeration, EnvironmentPackage.eINSTANCE.getEnumeration_Literals());
            enumerationPart.initLiterals(literalsSettings);
        }
        if (isAccessible(EnvironmentViewsRepository.Enumeration.Properties.description))
            enumerationPart.setDescription(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, enumeration.getDescription()));
        if (isAccessible(EnvironmentViewsRepository.Enumeration.Properties.literals)) {
            enumerationPart.addFilterToLiterals(new ViewerFilter() {

                /**
                 * {@inheritDoc}
                 *
                 * @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
                 */
                public boolean select(Viewer viewer, Object parentElement, Object element) {
                    return (element instanceof Literal);
                }
            });
        // Start of user code for additional businessfilters for literals
        // End of user code
        }
    // init values for referenced views
    // init filters for referenced views
    }
    setInitializing(false);
}
Also used : EnumerationPropertiesEditionPart(org.obeonetwork.dsl.environment.parts.EnumerationPropertiesEditionPart) Enumeration(org.obeonetwork.dsl.environment.Enumeration) ReferencesTableSettings(org.eclipse.emf.eef.runtime.ui.widgets.referencestable.ReferencesTableSettings) ViewerFilter(org.eclipse.jface.viewers.ViewerFilter) Literal(org.obeonetwork.dsl.environment.Literal) Viewer(org.eclipse.jface.viewers.Viewer) EObject(org.eclipse.emf.ecore.EObject)

Example 3 with Enumeration

use of org.obeonetwork.dsl.environment.Enumeration in project InformationSystem by ObeoNetwork.

the class EnumerationEnumerationPropertiesEditionComponent method updateSemanticModel.

/**
 * {@inheritDoc}
 * @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#updateSemanticModel(org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent)
 */
public void updateSemanticModel(final IPropertiesEditionEvent event) {
    Enumeration enumeration = (Enumeration) semanticObject;
    if (EnvironmentViewsRepository.Enumeration.Properties.name == event.getAffectedEditor()) {
        enumeration.setName((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
    }
    if (EnvironmentViewsRepository.Enumeration.Properties.literals == event.getAffectedEditor()) {
        if (event.getKind() == PropertiesEditionEvent.ADD) {
            EReferencePropertiesEditionContext context = new EReferencePropertiesEditionContext(editingContext, this, literalsSettings, editingContext.getAdapterFactory());
            PropertiesEditingProvider provider = (PropertiesEditingProvider) editingContext.getAdapterFactory().adapt(semanticObject, PropertiesEditingProvider.class);
            if (provider != null) {
                PropertiesEditingPolicy policy = provider.getPolicy(context);
                if (policy instanceof CreateEditingPolicy) {
                    policy.execute();
                }
            }
        } else if (event.getKind() == PropertiesEditionEvent.EDIT) {
            EObjectPropertiesEditionContext context = new EObjectPropertiesEditionContext(editingContext, this, (EObject) event.getNewValue(), editingContext.getAdapterFactory());
            PropertiesEditingProvider provider = (PropertiesEditingProvider) editingContext.getAdapterFactory().adapt((EObject) event.getNewValue(), PropertiesEditingProvider.class);
            if (provider != null) {
                PropertiesEditingPolicy editionPolicy = provider.getPolicy(context);
                if (editionPolicy != null) {
                    editionPolicy.execute();
                }
            }
        } else if (event.getKind() == PropertiesEditionEvent.REMOVE) {
            literalsSettings.removeFromReference((EObject) event.getNewValue());
        } else if (event.getKind() == PropertiesEditionEvent.MOVE) {
            literalsSettings.move(event.getNewIndex(), (Literal) event.getNewValue());
        }
    }
    if (EnvironmentViewsRepository.Enumeration.Properties.description == event.getAffectedEditor()) {
        enumeration.setDescription((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
    }
}
Also used : EObjectPropertiesEditionContext(org.eclipse.emf.eef.runtime.context.impl.EObjectPropertiesEditionContext) Enumeration(org.obeonetwork.dsl.environment.Enumeration) PropertiesEditingProvider(org.eclipse.emf.eef.runtime.providers.PropertiesEditingProvider) EObject(org.eclipse.emf.ecore.EObject) Literal(org.obeonetwork.dsl.environment.Literal) PropertiesEditingPolicy(org.eclipse.emf.eef.runtime.policies.PropertiesEditingPolicy) CreateEditingPolicy(org.eclipse.emf.eef.runtime.policies.impl.CreateEditingPolicy) EReferencePropertiesEditionContext(org.eclipse.emf.eef.runtime.context.impl.EReferencePropertiesEditionContext)

Example 4 with Enumeration

use of org.obeonetwork.dsl.environment.Enumeration in project InformationSystem by ObeoNetwork.

the class DesignServices method isExistingDependency.

/**
 * Checks whether a dependency should be displayed between 2 namespaces
 * @param source
 * @param target
 * @return
 */
public static boolean isExistingDependency(Namespace source, Namespace target) {
    for (Type type : source.getTypes()) {
        if (type instanceof StructuredType) {
            StructuredType structuredType = (StructuredType) type;
            // Check inheritance
            StructuredType supertype = structuredType.getSupertype();
            if (supertype != null && target.equals(supertype.eContainer())) {
                return true;
            }
            // Check references
            for (Reference reference : structuredType.getOwnedReferences()) {
                StructuredType referencedType = reference.getReferencedType();
                if (referencedType != null && target.equals(referencedType.eContainer())) {
                    return true;
                }
            }
            // Check attributes
            for (Attribute attribute : structuredType.getOwnedAttributes()) {
                DataType datatype = attribute.getType();
                if (datatype instanceof Enumeration && target.equals(datatype.eContainer())) {
                    return true;
                }
            }
        }
    }
    return false;
}
Also used : StructuredType(org.obeonetwork.dsl.environment.StructuredType) DataType(org.obeonetwork.dsl.environment.DataType) Type(org.obeonetwork.dsl.environment.Type) Enumeration(org.obeonetwork.dsl.environment.Enumeration) Attribute(org.obeonetwork.dsl.environment.Attribute) Reference(org.obeonetwork.dsl.environment.Reference) DataType(org.obeonetwork.dsl.environment.DataType) StructuredType(org.obeonetwork.dsl.environment.StructuredType)

Example 5 with Enumeration

use of org.obeonetwork.dsl.environment.Enumeration in project InformationSystem by ObeoNetwork.

the class DesignServices method getNbDependencies.

/**
 * Returns the number of dependencies between 2 namespaces
 * @param source
 * @param target
 * @return
 */
public static int getNbDependencies(Namespace source, Namespace target) {
    int count = 0;
    for (Type type : source.getTypes()) {
        if (type instanceof StructuredType) {
            StructuredType structuredType = (StructuredType) type;
            // Check inheritance
            StructuredType supertype = structuredType.getSupertype();
            if (supertype != null && target.equals(supertype.eContainer())) {
                count += 1;
            }
            // Check references
            for (Reference reference : structuredType.getOwnedReferences()) {
                StructuredType referencedType = reference.getReferencedType();
                if (referencedType != null && target.equals(referencedType.eContainer())) {
                    count += 1;
                }
            }
            // Check attributes
            for (Attribute attribute : structuredType.getOwnedAttributes()) {
                DataType datatype = attribute.getType();
                if (datatype instanceof Enumeration && target.equals(datatype.eContainer())) {
                    count += 1;
                }
            }
        }
    }
    return count;
}
Also used : StructuredType(org.obeonetwork.dsl.environment.StructuredType) DataType(org.obeonetwork.dsl.environment.DataType) Type(org.obeonetwork.dsl.environment.Type) Enumeration(org.obeonetwork.dsl.environment.Enumeration) Attribute(org.obeonetwork.dsl.environment.Attribute) Reference(org.obeonetwork.dsl.environment.Reference) DataType(org.obeonetwork.dsl.environment.DataType) StructuredType(org.obeonetwork.dsl.environment.StructuredType)

Aggregations

Enumeration (org.obeonetwork.dsl.environment.Enumeration)5 EObject (org.eclipse.emf.ecore.EObject)2 Attribute (org.obeonetwork.dsl.environment.Attribute)2 DataType (org.obeonetwork.dsl.environment.DataType)2 Literal (org.obeonetwork.dsl.environment.Literal)2 Reference (org.obeonetwork.dsl.environment.Reference)2 StructuredType (org.obeonetwork.dsl.environment.StructuredType)2 Type (org.obeonetwork.dsl.environment.Type)2 EObjectPropertiesEditionContext (org.eclipse.emf.eef.runtime.context.impl.EObjectPropertiesEditionContext)1 EReferencePropertiesEditionContext (org.eclipse.emf.eef.runtime.context.impl.EReferencePropertiesEditionContext)1 PropertiesEditingPolicy (org.eclipse.emf.eef.runtime.policies.PropertiesEditingPolicy)1 CreateEditingPolicy (org.eclipse.emf.eef.runtime.policies.impl.CreateEditingPolicy)1 PropertiesEditingProvider (org.eclipse.emf.eef.runtime.providers.PropertiesEditingProvider)1 ReferencesTableSettings (org.eclipse.emf.eef.runtime.ui.widgets.referencestable.ReferencesTableSettings)1 Viewer (org.eclipse.jface.viewers.Viewer)1 ViewerFilter (org.eclipse.jface.viewers.ViewerFilter)1 Column (org.obeonetwork.dsl.database.Column)1 EnumerationPropertiesEditionPart (org.obeonetwork.dsl.environment.parts.EnumerationPropertiesEditionPart)1