Uses of Interface
provided.music.IPhraseVisitor

Packages that use IPhraseVisitor
provided.music   
 

Uses of IPhraseVisitor in provided.music
 

Classes in provided.music that implement IPhraseVisitor
 class APhraseVisitor
          Command-based implementation of IPhraseVisitor that uses IPhraseVisitorCmds stored in a hash table.
 

Fields in provided.music declared as IPhraseVisitor
private static IPhraseVisitor NESeqList._toStringAlgo
          toString algo for rest, the recursive helper function of the ToString algo.
 

Methods in provided.music with parameters of type IPhraseVisitor
 java.lang.Object Tuplet.execute(IPhraseVisitor algo, java.lang.Object... params)
          Calls the "Tuplet" case of the visitor.
 java.lang.Object Triplet.execute(IPhraseVisitor algo, java.lang.Object... params)
          Calls the "Triplet" case of the visitor
 java.lang.Object ToggleDecoratorSeqList.execute(IPhraseVisitor algo, java.lang.Object... params)
          Simply delegates the call to the decoree.
 java.lang.Object Note.execute(IPhraseVisitor algo, java.lang.Object... params)
          Calls the "Note" case of the visitor.
 java.lang.Object NESeqList.execute(IPhraseVisitor algo, java.lang.Object... params)
          Calls the "NESeqList" case of the visitor.
 java.lang.Object MTSeqList.execute(IPhraseVisitor algo, java.lang.Object... params)
          Calls the "MTSeqList" case of the visitor.
 java.lang.Object IPhrase.execute(IPhraseVisitor algo, java.lang.Object... params)
          Executes (accepts) the visitor, calling the case associated with this host's index value.
 java.lang.Object Header.execute(IPhraseVisitor algo, java.lang.Object... params)
          Calls the header id'th case of the visitor algo.
 java.lang.Object FineToggleDecoratorSeqList.execute(IPhraseVisitor algo, java.lang.Object... params)
          Delegates the call to the designated ISeqList decoree.
 java.lang.Object DecoratorSeqList.execute(IPhraseVisitor algo, java.lang.Object... params)
          Simply delegates the call to the decoree.
 java.lang.Object Chord.execute(IPhraseVisitor algo, java.lang.Object... params)
          Calls the "Chord" case of the given algo.
static void NESeqList.setToStringAlgo(IPhraseVisitor stringAlgo)
          Setter for the _toStringAlgo helper.