01: /*
02: * Copyright 2000,2005 wingS development team.
03: *
04: * This file is part of wingS (http://wingsframework.org).
05: *
06: * wingS is free software; you can redistribute it and/or modify
07: * it under the terms of the GNU Lesser General Public License
08: * as published by the Free Software Foundation; either version 2.1
09: * of the License, or (at your option) any later version.
10: *
11: * Please see COPYING for the complete licence.
12: */
13: package org.wings.plaf;
14:
15: import java.awt.Rectangle;
16: import java.util.List;
17:
18: import org.wings.STable;
19:
20: public interface TableCG extends ComponentCG {
21:
22: Update getTableScrollUpdate(STable table, Rectangle newViewport,
23: Rectangle oldViewport);
24:
25: Update getSelectionUpdate(STable table, List deselectedIndices,
26: List selectedIndices);
27:
28: Update getEditCellUpdate(STable table, int row, int column);
29:
30: Update getRenderCellUpdate(STable table, int row, int column);
31: }
|