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

studio.ui.dndtabbedpane.DragEvent Maven / Gradle / Ivy

Go to download

Studio for kdb+ is a rapid development environment for the ultra-fast database kdb+ from Kx Systems: http://www.kx.com.

There is a newer version: dz4.1
Show newest version
package studio.ui.dndtabbedpane;

public class DragEvent {
    private final int sourceIndex;
    private final int targetIndex;
    private final DraggableTabbedPane targetPane;

    public DragEvent(int sourceIndex, DraggableTabbedPane targetPane, int targetIndex) {
        this.sourceIndex = sourceIndex;
        this.targetIndex = targetIndex;
        this.targetPane = targetPane;
    }

    public int getSourceIndex() {
        return sourceIndex;
    }

    public int getTargetIndex() {
        return targetIndex;
    }

    public DraggableTabbedPane getTargetPane() {
        return targetPane;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy