home *** CD-ROM | disk | FTP | other *** search
- package javax.swing;
-
- import java.awt.Point;
-
- public final class JTable$DropLocation extends TransferHandler.DropLocation {
- private final int row;
- private final int col;
- private final boolean isInsertRow;
- private final boolean isInsertCol;
-
- private JTable$DropLocation(Point var1, int var2, int var3, boolean var4, boolean var5) {
- super(var1);
- this.row = var2;
- this.col = var3;
- this.isInsertRow = var4;
- this.isInsertCol = var5;
- }
-
- public int getRow() {
- return this.row;
- }
-
- public int getColumn() {
- return this.col;
- }
-
- public boolean isInsertRow() {
- return this.isInsertRow;
- }
-
- public boolean isInsertColumn() {
- return this.isInsertCol;
- }
-
- public String toString() {
- return this.getClass().getName() + "[dropPoint=" + this.getDropPoint() + "," + "row=" + this.row + "," + "column=" + this.col + "," + "insertRow=" + this.isInsertRow + "," + "insertColumn=" + this.isInsertCol + "]";
- }
-
- // $FF: synthetic method
- JTable$DropLocation(Point var1, int var2, int var3, boolean var4, boolean var5, JTable.1 var6) {
- this(var1, var2, var3, var4, var5);
- }
- }
-