Package java.awt

Examples of java.awt.Component.move()


  public int exec(Prog p)
  {
    Component C = (Component) ((JavaObject) getArg(0)).toObject();
    int hpos = (int) ((Int) getArg(1)).getValue();
    int vpos = (int) ((Int) getArg(2)).getValue();
    C.move(hpos, vpos);
    return 1;
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.