de.matthias_burbach.uml
Class DefaultState

java.lang.Object
  extended byde.matthias_burbach.uml.DefaultState
All Implemented Interfaces:
State

public class DefaultState
extends java.lang.Object
implements State

Author:
Matthias Burbach

Field Summary
private  java.util.Vector actions
           
private  java.lang.String name
           
private  java.lang.String stereotype
           
private  java.util.Vector transitions
           
private  Variable variable
           
 
Constructor Summary
DefaultState()
           
 
Method Summary
 java.util.Vector getActions()
           
 java.lang.String getName()
           
 java.lang.String getStereotype()
           
 java.util.Vector getTransitions()
           
 Variable getVariable()
           
 void setActions(java.util.Vector actions)
           
 void setName(java.lang.String name)
           
 void setStereotype(java.lang.String stereotype)
           
 void setTransitions(java.util.Vector transitions)
           
 void setVariable(Variable variable)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

stereotype

private java.lang.String stereotype

name

private java.lang.String name

transitions

private java.util.Vector transitions

actions

private java.util.Vector actions

variable

private Variable variable
Constructor Detail

DefaultState

public DefaultState()
Method Detail

getStereotype

public java.lang.String getStereotype()
Specified by:
getStereotype in interface State
Returns:
the stereotype

setStereotype

public void setStereotype(java.lang.String stereotype)
Specified by:
setStereotype in interface State
Parameters:
stereotype - the stereotype

getName

public java.lang.String getName()
Specified by:
getName in interface State
Returns:
the name

setName

public void setName(java.lang.String name)
Specified by:
setName in interface State
Parameters:
name - the name

getTransitions

public java.util.Vector getTransitions()
Specified by:
getTransitions in interface State
Returns:
the transitions

setTransitions

public void setTransitions(java.util.Vector transitions)
Specified by:
setTransitions in interface State
Parameters:
transitions - the transitions

getActions

public java.util.Vector getActions()
Specified by:
getActions in interface State
Returns:
the actions

setActions

public void setActions(java.util.Vector actions)
Specified by:
setActions in interface State
Parameters:
actions - the actions

getVariable

public Variable getVariable()
Specified by:
getVariable in interface State
Returns:
the variable

setVariable

public void setVariable(Variable variable)
Specified by:
setVariable in interface State
Parameters:
variable -

toString

public java.lang.String toString()