org.andromda.metafacades.uml14.PartitionFacadeLogicImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andromda-metafacades-uml14 Show documentation
Show all versions of andromda-metafacades-uml14 Show documentation
The UML 1.4 metafacades. This is the set of UML 1.4 metafacades
implementations. These implement the common UML metafacades.
The newest version!
package org.andromda.metafacades.uml14;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import org.omg.uml.behavioralelements.activitygraphs.ActivityGraph;
import org.omg.uml.behavioralelements.activitygraphs.Partition;
import org.omg.uml.behavioralelements.statemachines.StateVertex;
/**
* MetafacadeLogic implementation for org.andromda.metafacades.uml.PartitionFacade.
*
* @see org.andromda.metafacades.uml.PartitionFacade
* @author Bob Fields
*/
public class PartitionFacadeLogicImpl
extends PartitionFacadeLogic
{
private static final long serialVersionUID = 8178073921061583901L;
// ---------------- constructor -------------------------------
/**
* @param metaObject
* @param context
*/
public PartitionFacadeLogicImpl(Partition metaObject, String context)
{
super(metaObject, context);
}
/**
* @see org.andromda.metafacades.uml.PartitionFacade#getActivityGraph()
*/
@Override
protected ActivityGraph handleGetActivityGraph()
{
return metaObject.getActivityGraph();
}
/**
* @see org.andromda.metafacades.uml14.PartitionFacadeLogic#handleGetVertices()
*/
protected Collection handleGetVertices()
{
Collection vertices = new ArrayList();
final Collection contents = metaObject.getContents();
for (final Iterator contentIterator = contents.iterator(); contentIterator.hasNext();)
{
final Object element = contentIterator.next();
if (element instanceof StateVertex)
{
vertices.add((StateVertex)element);
}
}
return vertices;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy