Package window.graphic

Examples of window.graphic.LabelAgents


   * @param y1 Coordinates of first point of the line
   * @param x2 Coordinates of second point of the line
   * @param y2 Coordinates of second point of the line
   */
  public void buildLabelAgents(int x1, int y1, int x2, int y2) {
    LabelAgents l = new LabelAgents();
   
    content.setLayout(null);
    l.setVisible(true);
    l.setBounds(x1, y1, Math.abs(x2-x1), Math.abs(y2-y1));
    l.setLayout(null);
    l.setBorder(null);
 
    this.setLabelAgent(l);
    content.add(l);
  }
View Full Code Here

TOP

Related Classes of window.graphic.LabelAgents

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.