Package net.sf.kpex.gui

Examples of net.sf.kpex.gui.JinniDialog


  {
    Frame F = new Frame();
    String title = getArg(0).toUnquoted();
    int x = (int) ((Int) getArg(1)).getValue();
    int y = (int) ((Int) getArg(2)).getValue();
    JinniDialog D = new JinniDialog(F, title, this, x, y);
    D.show();
    D.waitAction();
    F.dispose();
    if (null == answer)
    {
      return 0;
    }
View Full Code Here

TOP

Related Classes of net.sf.kpex.gui.JinniDialog

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.