FileDocCategorySizeDatePackage
UMLAction.javaAPI DocExample972Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scriptapi.UML

UMLAction.java

/*----------------------------------------------------------------------------
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();
}
//------------------------------------------------------------------------------