KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.uml.behavioralelements.statemachines;
2
3 public interface SynchState extends org.omg.uml.behavioralelements.statemachines.StateVertex {
4     public int getBound();
5     public void setBound(int newValue);
6 }
7
Popular Tags