summaryrefslogtreecommitdiffstats
path: root/tests/design/reflect/Point.java
blob: b5d4fc91382b604a8e713566db8a9387408642e2 (plain)
1
2
3
4
5
6
7
8
9
10
package org.aspectj.examples;

public class Point {
    public int x, y;

    public Point(int _x, int _y) { this.x = _x; this.y = _y; }

    public void move(int dx, int dy) { x += dx; y += dy; }
}