package org.simantics.browsing.ui.nattable; import org.simantics.browsing.ui.swt.AdaptableHintContext; import org.simantics.db.layer0.SelectionHints; public class RowSelectionItem extends AdaptableHintContext { int rowIndex; int columnIndex[]; TreeNode item; public RowSelectionItem(TreeNode item, int rowIndex, int columnIndex[]) { super(SelectionHints.KEY_MAIN); this.item = item; this.rowIndex = rowIndex; this.columnIndex = columnIndex; setHint(SelectionHints.KEY_MAIN,item); } public TreeNode getItem() { return item; } public int getRowIndex() { return rowIndex; } public int[] getColumnIndex() { return columnIndex; } }