Package def_classes

Examples of def_classes.Box


 
  /**
   * Returns the current view of the display
   */
  public Box getCurrentView() {
    return new Box();
  }
View Full Code Here


    if (line.contains("BOX")) {
      x = Integer.valueOf(line.substring(line.indexOf('(')+1,(i = line.indexOf(','))));
      y = Integer.valueOf(line.substring((i+1), (j = line.indexOf(',', i+1))));
      width = Integer.valueOf(line.substring((j+1), (i = line.indexOf(',', j+1))));
      height = Integer.valueOf(line.substring((i+1), line.indexOf(')')));
      boundingBox = new Box(x, y, width, height);

    }
  }
View Full Code Here

  private static Box       templateBoundingBox;    // The bounding-box
 
  private static BalloonFactory me;
 
  private BalloonFactory() {
    templateBoundingBox = new Box(1, 1, 51, 64);
  }
View Full Code Here

TOP

Related Classes of def_classes.Box

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.