1 package org.omg.uml.behavioralelements.statemachines;2 3 public interface StateVertex extends org.omg.uml.foundation.core.ModelElement {4 public org.omg.uml.behavioralelements.statemachines.CompositeState getContainer();5 public void setContainer(org.omg.uml.behavioralelements.statemachines.CompositeState newValue);6 public java.util.Collection getOutgoing();7 public java.util.Collection getIncoming();8 }9