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