/*----------------------------------------------------------------------------
Copyright © 1998 Object International Software GmbH
----------------------------------------------------------------------------*/
package oisoft.togetherx.scriptapi.UML;
//------------------------------------------------------------------------------
/**
* Presents Actions of State Transition Diagrams.
* From UML point of view
* an action is an operation that:
* (1) is associated with a transition,
* (2) takes an insignificant amount of time to complete,
* (3) is considered to be non-interruptible.
* @version 2.1.05 21.03.1998
* @author Sergey Dmitriev
* @see UMLTransition
*/
public interface UMLAction extends UMLElement
{
/**
* Getting the time spent for action.
* @return Time property (simple string)
*/
String getActionTime();
}
//------------------------------------------------------------------------------
|