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 TypeMethodDescriptionvoidsetAssociatedPointX(int aColumnIndex, int aRowIndex, double aValue) Set the x-coordinate of the associated point at the column indexaColumnIndexand the row indexaRowIndexto the specifieddoublevalue.voidsetAssociatedPointY(int aColumnIndex, int aRowIndex, double aValue) Set the y-coordinate of the associated point at the column indexaColumnIndexand the row indexaRowIndexto the specifieddoublevalue.Methods inherited from interface com.luciad.shape.ILcdEditableMatrixView
setValueMethods inherited from interface com.luciad.shape.ILcdMatrixView
getColumnCount, getRowCount, getValueMethods 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 indexaColumnIndexand the row indexaRowIndexto the specifieddoublevalue.The coordinate should be defined in the reference of this matrix view. This reference can be found using the method (
ILcdReferencedMatrixView.getReference()).- Specified by:
setAssociatedPointXin 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 indexaColumnIndexand the row indexaRowIndexto the specifieddoublevalue.The coordinate should be defined in the reference of this matrix view. This reference can be found using the method (
ILcdReferencedMatrixView.getReference()).- Specified by:
setAssociatedPointYin interfaceILcdEditableMatrixView- Parameters:
aColumnIndex- the column index.aRowIndex- the row index.aValue- the new value.- See Also:
-