Searched refs:solo (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DSequencer.java485 * Sets the solo state for a track. If <code>solo</code> is <code>true</code>
486 * only this track and other solo'd tracks will sound. If <code>solo</code>
487 * is <code>false</code> then only other solo'd tracks will sound, unless no
488 * tracks are solo'd in which case all un-muted tracks will sound.
498 * @param solo the new solo state for the track. <code>true</code> implies the
499 * track should be solo'd, <code>false</code> implies the track should not be solo'
502 setTrackSolo(int track, boolean solo) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DRealTimeSequencer.java100 /** if a particular track is solo */
600 public synchronized void setTrackSolo(int track, boolean solo) { argument
604 trackSolo[track] = solo;
1577 boolean[] solo;
1581 solo = trackSolo;
1583 // if one track is solo, then only play solo
1585 if (solo != null) {
1586 for (int i = 0; i < solo.length; i++) {
1587 if (solo[
[all...]
H A DSoftChannel.java99 private boolean solo = false; field in class:SoftChannel
1540 this.solo = soloState;
1544 if (c.solo) {
1557 c.setSoloMute(!c.solo);
1576 return solo;

Completed in 39 milliseconds