If you just want to create a rectangular area then you should use the:
Area(int x1, int y1, int x2, int y2)
Constructs a rectangular area using x and y coordinates from two separate positions.
Or
Area(Position southWest, Position northEast)
Constructs a rectangular area using two positions
Constructors.