KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > uml > behavioralelements > statemachines > Guard


1 package org.omg.uml.behavioralelements.statemachines;
2
3 public interface Guard extends org.omg.uml.foundation.core.ModelElement {
4     public org.omg.uml.foundation.datatypes.BooleanExpression getExpression();
5     public void setExpression(org.omg.uml.foundation.datatypes.BooleanExpression newValue);
6     public org.omg.uml.behavioralelements.statemachines.Transition getTransition();
7     public void setTransition(org.omg.uml.behavioralelements.statemachines.Transition newValue);
8 }
9
Popular Tags