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
           
 
Method Summary
 java.lang.String getAction()
           
 java.lang.String getConclution()
           
 java.lang.String getCondition()
           
 java.lang.String getDescription()
           
 java.lang.String getId()
           
 java.lang.String getPerfomeded()
          Returns who perfoms the step.
 int getType()
           
 boolean isFinal()
          Returns true if the step ends the use case
 void setDescription(java.lang.String d)
           
 void setId(java.lang.String id)
           
 

Field Detail

PRE

public static final int PRE
See Also:
Constant Field Values

INV

public static final int INV
See Also:
Constant Field Values
Method Detail

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()