You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Point.java 200B

12345678910
  1. package org.aspectj.examples;
  2. public class Point {
  3. public int x, y;
  4. public Point(int _x, int _y) { this.x = _x; this.y = _y; }
  5. public void move(int dx, int dy) { x += dx; y += dy; }
  6. }