Package jpianotrain.staff

Examples of jpianotrain.staff.ScaleName


  @Override
  public void itemStateChanged(ItemEvent e) {
    if (e.getStateChange()!=ItemEvent.SELECTED) {
      return;
    }
    ScaleName sn=(ScaleName)scaleComboBox.getSelectedItem();
    showScale(sn);
  }
View Full Code Here


//ItemListener
  public void itemStateChanged(ItemEvent e) {
    if (e.getStateChange()!=ItemEvent.SELECTED) {
      return;
    }
    ScaleName scaleName=(ScaleName)scaleList.getSelectedItem();
    scaleTable.setModel(new ScaleTableModel(scaleName, Note.MAJOR_NAMES));
  }
View Full Code Here

TOP

Related Classes of jpianotrain.staff.ScaleName

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.