Search in sources :

Example 1 with InternalCriterion

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

the class InternalCriterionInternalCriterionPropertiesEditionComponent 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 InternalCriterion internalCriterion = (InternalCriterion) elt;
        final InternalCriterionPropertiesEditionPart internalCriterionPart = (InternalCriterionPropertiesEditionPart) editingPart;
        // init values
        if (isAccessible(EntityViewsRepository.InternalCriterion.Properties.target)) {
            // init part
            targetSettings = new EObjectFlatComboSettings(internalCriterion, EntityPackage.eINSTANCE.getInternalCriterion_Target());
            internalCriterionPart.initTarget(targetSettings);
            // set the button mode
            internalCriterionPart.setTargetButtonMode(ButtonsModeEnum.BROWSE);
        }
        if (isAccessible(EntityViewsRepository.InternalCriterion.Properties.description))
            internalCriterionPart.setDescription(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, internalCriterion.getDescription()));
    // init filters
    // init values for referenced views
    // init filters for referenced views
    }
    setInitializing(false);
}
Also used : InternalCriterionPropertiesEditionPart(org.obeonetwork.dsl.entity.parts.InternalCriterionPropertiesEditionPart) InternalCriterion(org.obeonetwork.dsl.entity.InternalCriterion) EObjectFlatComboSettings(org.eclipse.emf.eef.runtime.ui.widgets.eobjflatcombo.EObjectFlatComboSettings)

Example 2 with InternalCriterion

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

the class FinderImpl method getName.

/**
 * <!-- begin-user-doc --> <!-- end-user-doc -->
 *
 * @generated NOT
 */
public String getName() {
    String result = "";
    String customizedName = getCustomizedName();
    if ((customizedName != null) && (!customizedName.equals(""))) {
        result = customizedName;
    } else {
        result = "finder : ";
        EList<Criterion> listCriterions = getCriterions();
        if (listCriterions != null) {
            for (Iterator<Criterion> iter = listCriterions.iterator(); iter.hasNext(); ) {
                Criterion criterion = (Criterion) iter.next();
                if (criterion instanceof InternalCriterion) {
                    InternalCriterion internalCriterion = (InternalCriterion) criterion;
                    result += internalCriterion.getName();
                } else if (criterion instanceof ExternalCriterion) {
                    ExternalCriterion externalCriterion = (ExternalCriterion) criterion;
                    result += externalCriterion.getName();
                } else
                    result += criterion.toString();
                if (iter.hasNext())
                    result += ", ";
            }
        }
    }
    return result;
}
Also used : Criterion(org.obeonetwork.dsl.entity.Criterion) ExternalCriterion(org.obeonetwork.dsl.entity.ExternalCriterion) InternalCriterion(org.obeonetwork.dsl.entity.InternalCriterion) InternalCriterion(org.obeonetwork.dsl.entity.InternalCriterion) ExternalCriterion(org.obeonetwork.dsl.entity.ExternalCriterion)

Aggregations

InternalCriterion (org.obeonetwork.dsl.entity.InternalCriterion)2 EObjectFlatComboSettings (org.eclipse.emf.eef.runtime.ui.widgets.eobjflatcombo.EObjectFlatComboSettings)1 Criterion (org.obeonetwork.dsl.entity.Criterion)1 ExternalCriterion (org.obeonetwork.dsl.entity.ExternalCriterion)1 InternalCriterionPropertiesEditionPart (org.obeonetwork.dsl.entity.parts.InternalCriterionPropertiesEditionPart)1