Back to project page Music-Theory.
The source code is released under:
GNU General Public License
If you think the Android project Music-Theory listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.mt.theory; /*from w w w . ja v a2s . co m*/ public class Interval { private Note firstNote; private Quality quality; private Note secondNote; public Note getFirstNote() { return firstNote; } public Quality getQuality() { return quality; } public Note getSecondNote() { return secondNote; } public void setFirstNote(Note firstNote) { this.firstNote = firstNote; } public void setQuality(Quality quality) { this.quality = quality; } public void setSecondNote(Note secondNote) { this.secondNote = secondNote; } }