morfologik.fsa
Interface Traversable<T>

All Known Implementing Classes:
State, State

public interface Traversable<T>

Graph traversal acceptors.


Method Summary
 void postOrder(Visitor<? super T> v)
          Visit all sub-nodes in post-order (children first, then the node).
 void preOrder(Visitor<? super T> v)
          Visit all sub-states in pre-order (the node first, then children).
 

Method Detail

postOrder

void postOrder(Visitor<? super T> v)
Visit all sub-nodes in post-order (children first, then the node).


preOrder

void preOrder(Visitor<? super T> v)
Visit all sub-states in pre-order (the node first, then children).



Copyright © 2010. All Rights Reserved.