music.Playable.play()

Here are the examples of the java api music.Playable.play() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : Test.java
with GNU General Public License v3.0
from 2KAbhishek

public static void main(String[] args) {
    Playable veena = new Veena();
    veena.play();
    Playable saxophone = new Saxophone();
    saxophone.play();
}