Package com.googlecode.jumpnevolve.graphics.gui

Examples of com.googlecode.jumpnevolve.graphics.gui.DialogPart


    this.part.setContent(value);
  }

  @Override
  public DialogPart getDialogPart() {
    return new DialogPart(this.part, this.name);
  }
View Full Code Here


      Vector startPosition, Color color) {
    super(editor);
    this.modus = modus;
    this.position = startPosition;
    this.color = color;
    this.dialogPart = new DialogPart(new InterfaceVectorTextfield(), name);
    this.dialogPart.part.addContentListener(this);
    this.createShape();
  }
View Full Code Here

   *            Das Contentable
   * @param name
   *            Die Bezeichnung, unter der das Contentable abgelegt wird
   */
  public void addContentable(Contentable part, String name) {
    this.addPart(new DialogPart(part, name));
  }
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

   *
   * @param name
   *            Bezeichnung des Textfeldes
   */
  public void addTextField(String name) {
    this.addPart(new DialogPart(new InterfaceTextField(
        InterfaceFunctions.INTERFACE_TEXTFIELD), name));
  }
View Full Code Here

TOP

Related Classes of com.googlecode.jumpnevolve.graphics.gui.DialogPart

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.