All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wings.event.STableColumnModelEvent Maven / Gradle / Ivy

The newest version!
package org.wings.event;

import org.wings.table.STableColumnModel;

public class STableColumnModelEvent extends java.util.EventObject {
    protected int from;
    protected int to;

    public STableColumnModelEvent(STableColumnModel source, int from, int to) {
        super(source);
        this.from = from;
        this.to = to;
    }

    public int getFrom() {
        return from;
    }

    public int getTo() {
        return to;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy