Uses of Interface
dguitar.adaptors.song.SongPhrase

Packages that use SongPhrase
dguitar.adaptors.guitarPro Provides classes for Adapting a GPSong to a SongObject. 
dguitar.adaptors.song Provides classes for handling Songs. 
dguitar.adaptors.song.impl Provides classes for implementing a Song. 
 

Uses of SongPhrase in dguitar.adaptors.guitarPro
 

Methods in dguitar.adaptors.guitarPro that return SongPhrase
private static SongPhrase GPAdaptor.phraseFactory(Song song, java.util.ListIterator itM, java.util.ListIterator itMTP, java.util.List tracks)
          Look ahead at the next measure, build and determine a suitable SongPhrase to handle it.
 

Uses of SongPhrase in dguitar.adaptors.song
 

Subinterfaces of SongPhrase in dguitar.adaptors.song
 interface AlternativeSongPhrase
          An alternative song phrase defines different alternatives for each repetition of a containing repeated song phrase
 interface RepeatedSongPhrase
          A RepeatedSongPhrase defines an underlying phrase and a repeat count.
 interface Song
          A Song is a particular kind of SongPhraseList that defines an entire Song
 interface SongMeasure
          A SongMeasure is a single measure in a song.
 interface SongPhraseList
          A SongPhraseList is a list of separate SongPhrases that are played one after the other.
 

Methods in dguitar.adaptors.song that return SongPhrase
 SongPhrase SongPhraseList.getPhrase(int index)
           
 SongPhrase RepeatedSongPhrase.getPhrase()
           
 

Methods in dguitar.adaptors.song with parameters of type SongPhrase
 void SongPhraseList.addPhrase(SongPhrase phrase)
           
 

Uses of SongPhrase in dguitar.adaptors.song.impl
 

Classes in dguitar.adaptors.song.impl that implement SongPhrase
 class RepeatedSongPhraseImpl
          Implementation of RepeatedSongPhrase
 class SongImpl
          Implementation of Song
 class SongMeasureImpl
          Implementation of SongMeasure
 class SongPhraseListImpl
          Implementation of SongPhraseList
 

Fields in dguitar.adaptors.song.impl declared as SongPhrase
(package private)  SongPhrase RepeatedSongPhraseImpl.phrase
           
 

Methods in dguitar.adaptors.song.impl that return SongPhrase
 SongPhrase SongPhraseListImpl.getPhrase(int index)
           
 SongPhrase RepeatedSongPhraseImpl.getPhrase()
           
 

Methods in dguitar.adaptors.song.impl with parameters of type SongPhrase
 void SongPhraseListImpl.addPhrase(SongPhrase phrase)
           
 

Constructors in dguitar.adaptors.song.impl with parameters of type SongPhrase
RepeatedSongPhraseImpl(SongPhrase phrase, int repeatCount)