Package com.luciad.tea
Interface ILcdEditableReferencedMatrixView
- All Superinterfaces:
ILcdEditableMatrixView
,ILcdMatrixView
,ILcdReferencedMatrixView
- All Known Subinterfaces:
ILcdEditableVisibilityMatrixView
public interface ILcdEditableReferencedMatrixView
extends ILcdEditableMatrixView, ILcdReferencedMatrixView
An
ILcdEditableReferencedMatrixView
is an ILcdReferencedMatrixView
of which the values and associated points can be set.-
Method Summary
Modifier and TypeMethodDescriptionvoid
setAssociatedPointX
(int aColumnIndex, int aRowIndex, double aValue) Set the x-coordinate of the associated point at the column indexaColumnIndex
and the row indexaRowIndex
to the specifieddouble
value.void
setAssociatedPointY
(int aColumnIndex, int aRowIndex, double aValue) Set the y-coordinate of the associated point at the column indexaColumnIndex
and the row indexaRowIndex
to the specifieddouble
value.Methods inherited from interface com.luciad.shape.ILcdEditableMatrixView
setValue
Methods inherited from interface com.luciad.shape.ILcdMatrixView
getColumnCount, getRowCount, getValue
Methods inherited from interface com.luciad.tea.ILcdReferencedMatrixView
getReference, retrieveAssociatedPointX, retrieveAssociatedPointY
-
Method Details
-
setAssociatedPointX
void setAssociatedPointX(int aColumnIndex, int aRowIndex, double aValue) Set the x-coordinate of the associated point at the column indexaColumnIndex
and the row indexaRowIndex
to the specifieddouble
value.The coordinate should be defined in the reference of this matrix view. This reference can be found using the method (
ILcdReferencedMatrixView.getReference()
).- Specified by:
setAssociatedPointX
in interfaceILcdEditableMatrixView
- Parameters:
aColumnIndex
- the column index.aRowIndex
- the row index.aValue
- the new value.- See Also:
-
setAssociatedPointY
void setAssociatedPointY(int aColumnIndex, int aRowIndex, double aValue) Set the y-coordinate of the associated point at the column indexaColumnIndex
and the row indexaRowIndex
to the specifieddouble
value.The coordinate should be defined in the reference of this matrix view. This reference can be found using the method (
ILcdReferencedMatrixView.getReference()
).- Specified by:
setAssociatedPointY
in interfaceILcdEditableMatrixView
- Parameters:
aColumnIndex
- the column index.aRowIndex
- the row index.aValue
- the new value.- See Also:
-