package org.omg.uml.behavioralelements.statemachines; /** * StateVertex object instance interface. * * <p><em><strong>Note:</strong> This type should not be subclassed or implemented * by clients. It is generated from a MOF metamodel and automatically implemented * by MDR (see <a href="http://mdr.netbeans.org/">mdr.netbeans.org</a>).</em></p> */ public interface StateVertex extends org.omg.uml.foundation.core.ModelElement { /** * Returns the value of reference container. * @return Value of reference container. */ public org.omg.uml.behavioralelements.statemachines.CompositeState getContainer(); /** * Sets the value of reference container. See {@link #getContainer} for description * on the reference. * @param newValue New value to be set. */ public void setContainer(org.omg.uml.behavioralelements.statemachines.CompositeState newValue); /** * Returns the value of reference outgoing. * @return Value of reference outgoing. Element type: {@link org.omg.uml.behavioralelements.statemachines.Transition} */ public java.util.Collection<org.omg.uml.behavioralelements.statemachines.Transition> getOutgoing(); /** * Returns the value of reference incoming. * @return Value of reference incoming. Element type: {@link org.omg.uml.behavioralelements.statemachines.Transition} */ public java.util.Collection<org.omg.uml.behavioralelements.statemachines.Transition> getIncoming(); }