Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/robotml/org.eclipse.papyrus.robotml.modelexplorer/src/org/eclipse/papyrus/robotml/modelexplorer/query/GetAllSubSystemsQuery.java')
-rw-r--r--extraplugins/robotml/org.eclipse.papyrus.robotml.modelexplorer/src/org/eclipse/papyrus/robotml/modelexplorer/query/GetAllSubSystemsQuery.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/extraplugins/robotml/org.eclipse.papyrus.robotml.modelexplorer/src/org/eclipse/papyrus/robotml/modelexplorer/query/GetAllSubSystemsQuery.java b/extraplugins/robotml/org.eclipse.papyrus.robotml.modelexplorer/src/org/eclipse/papyrus/robotml/modelexplorer/query/GetAllSubSystemsQuery.java
deleted file mode 100644
index b497ac39102..00000000000
--- a/extraplugins/robotml/org.eclipse.papyrus.robotml.modelexplorer/src/org/eclipse/papyrus/robotml/modelexplorer/query/GetAllSubSystemsQuery.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2013 CEA LIST.
- *
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Saadia Dhouib (CEA LIST) saadia.dhouib@cea.fr - Initial API and implementation
- *****************************************************************************/
-package org.eclipse.papyrus.robotml.modelexplorer.query;
-
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.Iterator;
-
-import org.eclipse.emf.facet.infra.query.core.exception.ModelQueryExecutionException;
-import org.eclipse.emf.facet.infra.query.core.java.IJavaModelQuery;
-import org.eclipse.emf.facet.infra.query.core.java.ParameterValueList;
-import org.eclipse.papyrus.robotml.modelexplorer.util.ProfileUtil;
-import org.eclipse.uml2.uml.Class;
-import org.eclipse.uml2.uml.Classifier;
-import org.eclipse.uml2.uml.DataType;
-import org.eclipse.uml2.uml.Port;
-import org.eclipse.uml2.uml.Property;
-
-/** get all ports from a classifier */
-public class GetAllSubSystemsQuery implements IJavaModelQuery<Classifier, Collection<Property>> {
-
- @Override
- public Collection<Property> evaluate(final Classifier context, final ParameterValueList parameterValues) throws ModelQueryExecutionException {
- ArrayList<Property> result = new ArrayList<Property>();
- // System.err.println("context.getNearestPackage(): "+ context.getNearestPackage());
- if (ProfileUtil.getAppliedProfile(context.getNearestPackage(), "RobotML") != null) {
-
- Iterator<Property> iter = context.getAllAttributes().iterator();
- while (iter.hasNext()) {
- Property currentElement = iter.next();
- // if the property is typed by a classifier, it is a subsystem
- if ((currentElement.getType() instanceof Class) && !(currentElement instanceof Port) && !(currentElement.getType() instanceof DataType)) {
- result.add(currentElement);
- }
- }
- }
- return result;
- }
-}

Back to the top