Package com.googlecode.jumpnevolve.graphics.gui.objects

Examples of com.googlecode.jumpnevolve.graphics.gui.objects.InterfaceNumberSelection


  private final int min, max, step;

  public NumberSelection(Editor editor, String name, int start, int min,
      int max, int step) {
    super(editor, new InterfaceNumberSelection(min, max, start, step), name);
    this.min = min;
    this.max = max;
    this.step = step;
  }
View Full Code Here


   *            Der minimale Wert
   * @param max
   *            Der maximale Wert
   */
  public void addNumberSelection(String name, int min, int max) {
    this.addPart(new DialogPart(new InterfaceNumberSelection(min, max),
        name));
  }
View Full Code Here

TOP

Related Classes of com.googlecode.jumpnevolve.graphics.gui.objects.InterfaceNumberSelection

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.