blob: 3cf5b5cd6f0940ab871459f1ff765cb774eb189f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 RCP Vision (http://www.rcp-vision.com) and others.
* 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
*
* Contributors:
* Vincenzo Caselli - Initial contribution and API
*
*******************************************************************************/
package org.eclipse.swt.graphics;
public final class Point {
public int x;
public int y;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
}