01: /*
02: * Copyright (C) 2004 TiongHiang Lee
03: *
04: * This library is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2.1 of the License, or (at your option) any later version.
08: *
09: * This library is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: *
18: * Email: thlee@onemindsoft.org
19: */
20:
21: package org.onemind.swingweb.client.gwt.widget;
22:
23: public class CellInfo {
24:
25: public int row, col, rowspan, colspan, x, y;
26:
27: public CellInfo(int row, int col) {
28: this (row, col, 1, 1);
29: }
30:
31: public CellInfo(int row, int col, int rowspan, int colspan) {
32: this (row, col, rowspan, colspan, 0, 0);
33: }
34:
35: public CellInfo(int row, int col, int rowspan, int colspan, int x,
36: int y) {
37: this .row = row;
38: this .col = col;
39: this .rowspan = rowspan;
40: this .colspan = colspan;
41: this .x = x;
42: this .y = y;
43: }
44:
45: public boolean equals(Object obj) {
46: if (obj instanceof CellInfo) {
47: CellInfo other = (CellInfo) obj;
48: return row == other.row && col == other.col
49: && rowspan == other.rowspan
50: && colspan == other.colspan;
51: } else {
52: return false;
53: }
54: }
55: }
|