Package jpianotrain.gui

Examples of jpianotrain.gui.CircleOfFifths


    if (dlg==null) {
      dlg=new JDialog(ApplicationContext.getInstance().getDefaultDialogOwner(),
        ResourceFactory.getString(ACTION_CIRCLE_OF_FIFTHS_NAME),
        false);
      dlg.setLayout(new BorderLayout());
      dlg.add(new CircleOfFifths(), BorderLayout.CENTER);
      dlg.pack();
      Dimension d=dlg.getSize();
      d.setSize(new Dimension(d.width, d.height+200));
    }
View Full Code Here

TOP

Related Classes of jpianotrain.gui.CircleOfFifths

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.