de.uka.ipd.sdq.markov
Interface Transition

All Superinterfaces:
Entity
All Known Implementing Classes:
TransitionImpl

public interface Transition
extends Entity

A representation of the model object 'Transition'.

The following features are supported:

See Also:
MarkovPackage.getTransition()

Method Summary
 State getFromState()
          Returns the value of the 'From State' reference.
 double getProbability()
          Returns the value of the 'Probability' attribute.
 State getToState()
          Returns the value of the 'To State' reference.
 void setFromState(State value)
          Sets the value of the 'From State' reference.
 void setProbability(double value)
          Sets the value of the 'Probability' attribute.
 void setToState(State value)
          Sets the value of the 'To State' reference.
 
Methods inherited from interface de.uka.ipd.sdq.markov.Entity
getName, setName
 

Method Detail

getProbability

double getProbability()
Returns the value of the 'Probability' attribute.

If the meaning of the 'Probability' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Probability' attribute.
See Also:
setProbability(double), MarkovPackage.getTransition_Probability()

setProbability

void setProbability(double value)
Sets the value of the 'Probability' attribute.

Parameters:
value - the new value of the 'Probability' attribute.
See Also:
getProbability()

getFromState

State getFromState()
Returns the value of the 'From State' reference.

If the meaning of the 'From State' reference isn't clear, there really should be more of a description here...

Returns:
the value of the 'From State' reference.
See Also:
setFromState(State), MarkovPackage.getTransition_FromState()

setFromState

void setFromState(State value)
Sets the value of the 'From State' reference.

Parameters:
value - the new value of the 'From State' reference.
See Also:
getFromState()

getToState

State getToState()
Returns the value of the 'To State' reference.

If the meaning of the 'To State' reference isn't clear, there really should be more of a description here...

Returns:
the value of the 'To State' reference.
See Also:
setToState(State), MarkovPackage.getTransition_ToState()

setToState

void setToState(State value)
Sets the value of the 'To State' reference.

Parameters:
value - the new value of the 'To State' reference.
See Also:
getToState()