Class RowColLocation
- java.lang.Object
-
- docking.widgets.fieldpanel.support.RowColLocation
-
- Direct Known Subclasses:
DefaultRowColLocation
public class RowColLocation extends java.lang.ObjectSimple class to return a row, column location.
-
-
Constructor Summary
Constructors Change Constructor Description RowColLocation(int row, int col)Constructs a new RowColLocation with the given row and column.
-
Method Summary
All Methods Instance Methods Concrete Methods Change Modifier and Type Method Description intcol()booleanequals(java.lang.Object object)NEW inthashCode()introw()java.lang.StringtoString()NEW RowColLocationwithCol(int newColumn)NEW RowColLocationwithRow(int newRow)
-
-
-
Method Detail
-
row
public int row()
-
col
public int col()
-
withCol NEW
public RowColLocation withCol(int newColumn)
-
withRow NEW
public RowColLocation withRow(int newRow)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object object)
- Overrides:
equalsin classjava.lang.Object
-
-