/* Dimension.java
Purpose:
Description:
History:
Thu Dec 10 12:42:01 TST 2009, Created by tomyeh
Copyright (C) 2009 Potix Corporation. All Rights Reserved.
*/
package _global_;
/**
* A dimension.
* @author tomyeh
* @see Map
*/
public class Dimension extends Map {
/** The left coordinate.
*/
public int left;
/** The top coordinate.
*/
public int top;
/** The width.
*/
public int width;
/** The height.
*/
public int height;
private Dimension() {}
}