Uses of Interface
com.karneim.util.collection.set.IStatePro

Packages that use IStatePro
com.karneim.util.collection.set   
 

Uses of IStatePro in com.karneim.util.collection.set
 

Methods in com.karneim.util.collection.set that return IStatePro
 IStatePro SAutomaton.getStartState()
          Returns the current start state of the automaton. important: The result is null, if and only if the current start state is null
 IStatePro SAutomaton.addState()
          Adds a new non final state to this automaton.
 IStatePro SAutomaton.addState(boolean isFinal)
          Adds a new final or non final state to this automaton.
 IStatePro IStatePro.ITransition.getFromState()
           
 IStatePro IStatePro.ITransition.getToState()
           
 IStatePro StateProSet.Iterator.next()
           
 

Methods in com.karneim.util.collection.set with parameters of type IStatePro
 void SAutomaton.setStartState(IStatePro state)
          Sets the automaton's start state to the specified state.
 boolean SAutomaton.removeState(IStatePro state)
          Removes the specified state from this automaton.
 void SAutomaton.IChangeListener.stateAdded(IStatePro state)
          The Automaton invokes this method on all registered listener if a new state has been added to the automaton.
 void SAutomaton.IChangeListener.stateRemoved(IStatePro state)
          The Automaton invokes this method on all registered listener if an existing state has been removed from the automaton.
 void SAutomaton.IChangeListener.startStateChanged(IStatePro oldStartState, IStatePro newStartState)
          The Automaton invokes this method on all registered listener if the automaton's current startState has been changed.
 IStatePro.ITransition IStatePro.addTransition(ISet_char charSet, IStatePro toState)
          Adds a new transition to this state.
 void IStatePro.IVisitListener.stateVisited(IStatePro state)
          The state invokes this method on all registered listener if it is visited through an epsilon transition.
 void IStatePro.IVisitListener.stateVisited(IStatePro state, char ch)
          The state invokes this method on all registered listener if it is visited through an transition with char ch.
 void IStatePro.IVisitListener.stateUnVisited(IStatePro state)
           
 void IStatePro.IChangeListener.isFinalChanged(IStatePro state, boolean isFinal)
          The state invokes this method on all registered listener if it's final property is changed.
 boolean StateProSet.add(IStatePro state)
           
 boolean StateProSet.remove(IStatePro state)
           
 boolean StateProSet.contains(IStatePro state)
           
 

Constructors in com.karneim.util.collection.set with parameters of type IStatePro
StateProSet(IStatePro state)