Search in sources :

Example 1 with EventGroup

use of org.palladiosimulator.pcm.repository.EventGroup in project Palladio-Editors-Sirius by PalladioSimulator.

the class AddSourceRole method getEventGroup.

private EventGroup getEventGroup(SourceRole role) {
    Collection<Object> filter = new ArrayList<Object>();
    filter.add(Repository.class);
    filter.add(EventGroup.class);
    // Additional Child References
    Collection<EReference> additionalChildReferences = new ArrayList<EReference>();
    // Creating the dialog
    PalladioSelectEObjectDialog dialog = new PalladioSelectEObjectDialog(SHELL, filter, additionalChildReferences, role.eResource().getResourceSet());
    // Setting the needed object type
    dialog.setProvidedService(EventGroup.class);
    dialog.open();
    return (EventGroup) dialog.getResult();
}
Also used : PalladioSelectEObjectDialog(org.palladiosimulator.editors.commons.dialogs.selection.PalladioSelectEObjectDialog) ArrayList(java.util.ArrayList) EObject(org.eclipse.emf.ecore.EObject) EReference(org.eclipse.emf.ecore.EReference) EventGroup(org.palladiosimulator.pcm.repository.EventGroup)

Example 2 with EventGroup

use of org.palladiosimulator.pcm.repository.EventGroup in project Palladio-Editors-Sirius by PalladioSimulator.

the class AddSourceRole method execute.

@Override
public void execute(Collection<? extends EObject> selection, Map<String, Object> parameters) {
    SourceRole role = (SourceRole) parameters.get("instance");
    EventGroup eventGroup = getEventGroup(role);
    role.setEventGroup__SourceRole(eventGroup);
}
Also used : SourceRole(org.palladiosimulator.pcm.repository.SourceRole) EventGroup(org.palladiosimulator.pcm.repository.EventGroup)

Example 3 with EventGroup

use of org.palladiosimulator.pcm.repository.EventGroup in project Palladio-Editors-Sirius by PalladioSimulator.

the class EventGroupTableLifecycleManager method setPropertySection.

@Override
protected void setPropertySection(Composite parent) {
    editorSection = new EventTypesEditorSection(parent);
    editorSection.setViewerContentProvider(new AdapterFactoryContentProvider(adapterFactory));
    editorSection.setViewerLabelProvider(new AdapterFactoryLabelProvider(new EventTypesTabItemProviderAdapterFactory(new PalladioItemProviderAdapterFactory(adapterFactory))));
    EventGroup input = (EventGroup) controller.getValue();
    editorSection.setViewerInput(input);
    ((EventTypesEditorSection) editorSection).getAddButtonListener().setSelectedInterface((EventGroup) input);
}
Also used : EventTypesEditorSection(org.palladiosimulator.editors.sirius.repository.custom.properties.editorsections.EventTypesEditorSection) EventTypesTabItemProviderAdapterFactory(org.palladiosimulator.editors.commons.tabs.operations.EventTypesTabItemProviderAdapterFactory) AdapterFactoryContentProvider(org.eclipse.emf.edit.ui.provider.AdapterFactoryContentProvider) AdapterFactoryLabelProvider(org.eclipse.emf.edit.ui.provider.AdapterFactoryLabelProvider) PalladioItemProviderAdapterFactory(org.palladiosimulator.pcm.ui.provider.PalladioItemProviderAdapterFactory) EventGroup(org.palladiosimulator.pcm.repository.EventGroup)

Example 4 with EventGroup

use of org.palladiosimulator.pcm.repository.EventGroup in project Palladio-Editors-Sirius by PalladioSimulator.

the class AddEmitEventAction method getEventType.

private EventType getEventType(EmitEventAction emitEventAction) {
    Collection<Object> filter = new ArrayList<Object>();
    filter.add(Repository.class);
    filter.add(EventGroup.class);
    filter.add(EventType.class);
    Collection<EReference> additionalChildReferences = new ArrayList<EReference>();
    PalladioSelectEObjectDialog dialog = new PalladioSelectEObjectDialog(SHELL, filter, additionalChildReferences, emitEventAction.eResource().getResourceSet());
    dialog.setProvidedService(EventType.class);
    // Only show EventTypes from EventGroups from SourceRoles of the parent BasicComponent
    for (Object o : dialog.getTreeViewer().getExpandedElements()) {
        if (!(o instanceof EventGroup))
            continue;
        ServiceEffectSpecification seff = SEFFUtil.getEnclosingSEFF(emitEventAction.getResourceDemandingBehaviour_AbstractAction());
        BasicComponent parent = seff.getBasicComponent_ServiceEffectSpecification();
        boolean found = false;
        for (RequiredRole r : parent.getRequiredRoles_InterfaceRequiringEntity()) {
            if (!(r instanceof SourceRole))
                continue;
            SourceRole sourceRole = (SourceRole) r;
            if (sourceRole.getEventGroup__SourceRole().equals(o)) {
                found = true;
                emitEventAction.setSourceRole__EmitEventAction(sourceRole);
            }
        }
        if (!found)
            dialog.getTreeViewer().remove(o);
    }
    dialog.open();
    return (EventType) dialog.getResult();
}
Also used : SourceRole(org.palladiosimulator.pcm.repository.SourceRole) RequiredRole(org.palladiosimulator.pcm.repository.RequiredRole) EventType(org.palladiosimulator.pcm.repository.EventType) ArrayList(java.util.ArrayList) ServiceEffectSpecification(org.palladiosimulator.pcm.seff.ServiceEffectSpecification) EventGroup(org.palladiosimulator.pcm.repository.EventGroup) PalladioSelectEObjectDialog(org.palladiosimulator.editors.commons.dialogs.selection.PalladioSelectEObjectDialog) BasicComponent(org.palladiosimulator.pcm.repository.BasicComponent) EObject(org.eclipse.emf.ecore.EObject) EReference(org.eclipse.emf.ecore.EReference)

Example 5 with EventGroup

use of org.palladiosimulator.pcm.repository.EventGroup in project Palladio-Editors-Sirius by PalladioSimulator.

the class AddSinkRole method execute.

@Override
public void execute(Collection<? extends EObject> selection, Map<String, Object> parameters) {
    SinkRole role = (SinkRole) parameters.get("instance");
    EventGroup eventGroup = getEventGroup(role);
    role.setEventGroup__SinkRole(eventGroup);
}
Also used : SinkRole(org.palladiosimulator.pcm.repository.SinkRole) EventGroup(org.palladiosimulator.pcm.repository.EventGroup)

Aggregations

EventGroup (org.palladiosimulator.pcm.repository.EventGroup)8 ArrayList (java.util.ArrayList)4 EObject (org.eclipse.emf.ecore.EObject)4 EReference (org.eclipse.emf.ecore.EReference)4 PalladioSelectEObjectDialog (org.palladiosimulator.editors.commons.dialogs.selection.PalladioSelectEObjectDialog)4 SourceRole (org.palladiosimulator.pcm.repository.SourceRole)2 AdapterFactoryContentProvider (org.eclipse.emf.edit.ui.provider.AdapterFactoryContentProvider)1 AdapterFactoryLabelProvider (org.eclipse.emf.edit.ui.provider.AdapterFactoryLabelProvider)1 Shell (org.eclipse.swt.widgets.Shell)1 EventTypesTabItemProviderAdapterFactory (org.palladiosimulator.editors.commons.tabs.operations.EventTypesTabItemProviderAdapterFactory)1 EventTypesEditorSection (org.palladiosimulator.editors.sirius.repository.custom.properties.editorsections.EventTypesEditorSection)1 EventChannel (org.palladiosimulator.pcm.core.composition.EventChannel)1 BasicComponent (org.palladiosimulator.pcm.repository.BasicComponent)1 EventType (org.palladiosimulator.pcm.repository.EventType)1 RequiredRole (org.palladiosimulator.pcm.repository.RequiredRole)1 SinkRole (org.palladiosimulator.pcm.repository.SinkRole)1 ServiceEffectSpecification (org.palladiosimulator.pcm.seff.ServiceEffectSpecification)1 PalladioItemProviderAdapterFactory (org.palladiosimulator.pcm.ui.provider.PalladioItemProviderAdapterFactory)1