blob: 9aae5da9f8dc4f2bd9fe58b13c35e9be6292e9b0 [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2004, 2010 Technical University Berlin, Germany.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
* $Id$
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Technical University Berlin - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.example.observer.point_n_line;
public class Point {
private int x,y;
public Point (int x, int y) {
this.x = x;
this.y = y;
}
public String toString () {
return "("+x+", "+y+")";
}
}