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)));
}
}
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);
}
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()));
}
}
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;
}
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;
}
Aggregations