Package net.sf.kpex.gui

Examples of net.sf.kpex.gui.JinniImagePanel


  {
    JinniContainer C = (JinniContainer) ((JavaObject) getArg(0)).toObject();
    String src = ((Const) getArg(1)).getName();
    int width = (int) ((Int) getArg(2)).getValue();
    int height = (int) ((Int) getArg(3)).getValue();
    JinniImagePanel P = new JinniImagePanel(src, width, height);
    C.add_it(P);
    JavaObject JP = new JavaObject(P);
    return putArg(4, JP, p);
  }
View Full Code Here

TOP

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

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.