001/* 002 * (C) Copyright 2006-2008 Nuxeo SAS (http://nuxeo.com/) and contributors. 003 * 004 * All rights reserved. This program and the accompanying materials 005 * are made available under the terms of the GNU Lesser General Public License 006 * (LGPL) version 2.1 which accompanies this distribution, and is available at 007 * http://www.gnu.org/licenses/lgpl.html 008 * 009 * This library is distributed in the hope that it will be useful, 010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 012 * Lesser General Public License for more details. 013 * 014 * Contributors: 015 * troger 016 * 017 * $Id$ 018 */ 019 020package org.nuxeo.ecm.platform.pictures.tiles.gwt.client.util; 021 022/** 023 * @author <a href="mailto:troger@nuxeo.com">Thomas Roger</a> 024 */ 025public class Point { 026 027 private int x; 028 029 private int y; 030 031 public Point(int x, int y) { 032 this.x = x; 033 this.y = y; 034 } 035 036 public Point() { 037 this(0, 0); 038 } 039 040 public void move(int x, int y) { 041 this.x += x; 042 this.y += y; 043 } 044 045 public void setLocation(int x, int y) { 046 this.x = x; 047 this.y = y; 048 } 049 050 /** 051 * @return the x. 052 */ 053 public int getX() { 054 return x; 055 } 056 057 /** 058 * @return the y. 059 */ 060 public int getY() { 061 return y; 062 } 063 064}