* Returns whether current node is selected
*
* @return <code>true</code> if node is selected else <code>false</code>
*/
public boolean isSelected() {
TreeState treeState = (TreeState) getComponentState();
return treeState.isSelected((TreeRowKey) this.getRowKey());
}