1 package org.omg.uml.behavioralelements.statemachines;2 3 public interface CompositeState extends org.omg.uml.behavioralelements.statemachines.State {4 public boolean isConcurrent();5 public void setConcurrent(boolean newValue);6 public java.util.Collection getSubvertex();7 }8