Package kakuro.gui.editor

Examples of kakuro.gui.editor.SkeletonEditor


 
  /** Új skeleton szerkesztő ablak létrehozása, ha a felhasználó megfelelő jogokkal rendelkezik */
  protected void newSkeletonEditorAction() {
        debug("checking admin rights: "+(_user.isAdmin()?"user is admin, can edit skeletons":"user can't edit skeletons"));
        if (!_user.isAdmin()) return;
    SkeletonEditor editor = new SkeletonEditor(this);
    editor.init();
    editor.newSkeleton();
  }
View Full Code Here

TOP

Related Classes of kakuro.gui.editor.SkeletonEditor

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.