package inclass;

import java.awt.Point;

/**
 * @author Gary T. Leavens
 */
aspect AddLocation {
  private Point Main.location = new Point();
  public Point Main.getLocation() {
    return location;
  }
  private void Main.setLocation(Point p) {
    location = p;
  }
  
  public void dotest() {
  	 new Main().setLocation(new Point());
  }
}
