public class LWRComponentInfo
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
int |
column
The column in which the LWRComponent resides.
|
IDataProvider |
dataProvider
The data provider, if any, for the LWRComponent.
|
LWRComponent |
lwrComponent
The LWRComponent in the position determined by the values row and column.
|
int |
row
The row in which the LWRComponent resides.
|
Constructor and Description |
---|
LWRComponentInfo(int row,
int column,
LWRComponent lwrComponent)
The default constructor for an LWRComponent wrapper.
|
LWRComponentInfo(int row,
int column,
LWRComponent lwrComponent,
IDataProvider dataProvider)
The full constructor for an LWRComponent wrapper.
|
Modifier and Type | Method and Description |
---|---|
boolean |
matches(LWRComponentInfo other)
Determines whether or not this location and LWRComponent is the same as
the passed argument.
|
public final int row
public final int column
public final LWRComponent lwrComponent
public final IDataProvider dataProvider
public LWRComponentInfo(int row, int column, LWRComponent lwrComponent)
row
- The row in which the LWRComponent resides.column
- The column in which the LWRComponent resides.lwrComponent
- The LWRComponent in the position determined by the values row
and column.public LWRComponentInfo(int row, int column, LWRComponent lwrComponent, IDataProvider dataProvider)
row
- The row in which the LWRComponent resides.column
- The column in which the LWRComponent resides.lwrComponent
- The LWRComponent in the position determined by the values row
and column.dataProvider
- The data provider, if any, for the LWRComponent.public boolean matches(LWRComponentInfo other)
other
- The other LWRComponentInfo object to compare.null
.