01: package org.wings.event;
02:
03: import org.wings.table.STableColumnModel;
04:
05: public class STableColumnModelEvent extends java.util.EventObject {
06: protected int from;
07: protected int to;
08:
09: public STableColumnModelEvent(STableColumnModel source, int from,
10: int to) {
11: super (source);
12: this .from = from;
13: this .to = to;
14: }
15:
16: public int getFrom() {
17: return from;
18: }
19:
20: public int getTo() {
21: return to;
22: }
23: }
|