Search in sources :

Example 1 with RootPropertiesEditionPart

use of org.obeonetwork.dsl.entity.parts.RootPropertiesEditionPart in project InformationSystem by ObeoNetwork.

the class RootRootPropertiesEditionComponent 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 Root root = (Root) elt;
        final RootPropertiesEditionPart rootPart = (RootPropertiesEditionPart) editingPart;
        // init values
        if (isAccessible(EntityViewsRepository.Root.Properties.name))
            rootPart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, root.getName()));
        if (isAccessible(EntityViewsRepository.Root.Properties.description))
            rootPart.setDescription(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, root.getDescription()));
    // init filters
    // init values for referenced views
    // init filters for referenced views
    }
    setInitializing(false);
}
Also used : Root(org.obeonetwork.dsl.entity.Root) RootPropertiesEditionPart(org.obeonetwork.dsl.entity.parts.RootPropertiesEditionPart)

Aggregations

Root (org.obeonetwork.dsl.entity.Root)1 RootPropertiesEditionPart (org.obeonetwork.dsl.entity.parts.RootPropertiesEditionPart)1