objectgen.usecase
Interface IStep
- All Known Implementing Classes:
- Step
- public interface IStep
Interfaz that describes the methods available to any class that
describe a step of a use case
Field Summary |
static int |
INV
|
static int |
PRE
|
PRE
public static final int PRE
- See Also:
- Constant Field Values
INV
public static final int INV
- See Also:
- Constant Field Values
getId
public java.lang.String getId()
setId
public void setId(java.lang.String id)
getDescription
public java.lang.String getDescription()
setDescription
public void setDescription(java.lang.String d)
getPerfomeded
public java.lang.String getPerfomeded()
- Returns who perfoms the step. It may be the system or an
external actor.
isFinal
public boolean isFinal()
- Returns true if the step ends the use case
getType
public int getType()
getCondition
public java.lang.String getCondition()
getAction
public java.lang.String getAction()
getConclution
public java.lang.String getConclution()