Package com.mmi.pllTrainer.gui.listener

Examples of com.mmi.pllTrainer.gui.listener.CubeRotationConfigListener


    JLabel label = new JLabel("Cube Rotation:");
    label.setFont(Utilities.createFontLabel());
    label.setPreferredSize(this.configLabelDim);
    cubeRotationPanel.add(label);

    CubeRotationConfigListener listener = new CubeRotationConfigListener(this.cubeModel);

    ButtonGroup group = new ButtonGroup();
    for (CubeRotation cubeRotation : CubeRotation.values()) {
      JCheckBox checkBox = new JCheckBox(cubeRotation.getSelectionText());
      checkBox.setFont(Utilities.createFontLabel());
View Full Code Here

TOP

Related Classes of com.mmi.pllTrainer.gui.listener.CubeRotationConfigListener

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.