Search in sources :

Example 1 with PrimitiveTypePropertiesEditionPart

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

the class PrimitiveTypePrimitiveTypePropertiesEditionComponent 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 PrimitiveType primitiveType = (PrimitiveType) elt;
        final PrimitiveTypePropertiesEditionPart primitiveTypePart = (PrimitiveTypePropertiesEditionPart) editingPart;
        // init values
        if (isAccessible(EnvironmentViewsRepository.PrimitiveType.Properties.name))
            primitiveTypePart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, primitiveType.getName()));
        if (isAccessible(EnvironmentViewsRepository.PrimitiveType.Properties.description))
            primitiveTypePart.setDescription(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, primitiveType.getDescription()));
    // init filters
    // init values for referenced views
    // init filters for referenced views
    }
    setInitializing(false);
}
Also used : PrimitiveType(org.obeonetwork.dsl.environment.PrimitiveType) PrimitiveTypePropertiesEditionPart(org.obeonetwork.dsl.environment.parts.PrimitiveTypePropertiesEditionPart)

Aggregations

PrimitiveType (org.obeonetwork.dsl.environment.PrimitiveType)1 PrimitiveTypePropertiesEditionPart (org.obeonetwork.dsl.environment.parts.PrimitiveTypePropertiesEditionPart)1