Example usage for org.jfree.data SelectableValue isSelected

List of usage examples for org.jfree.data SelectableValue isSelected

Introduction

In this page you can find the example usage for org.jfree.data SelectableValue isSelected.

Prototype

public boolean isSelected() 

Source Link

Document

Returns the selection state.

Usage

From source file:org.jfree.data.pie.DefaultPieDataset.java

public boolean isSelected(Comparable key) {
    SelectableValue item = (SelectableValue) this.data.getObject(key);
    return item.isSelected();
}