Package org.jfree.data.extension

Examples of org.jfree.data.extension.DatasetSelectionExtension


            if (this.extensionManager.supports(e.getGeneralDataset(),
                    DatasetSelectionExtension.class)) {

                //TODO a type save solution would be nice
                DatasetCursor cursor = e.getItemCursor();
                DatasetSelectionExtension selectionExtension
                        = this.extensionManager.getExtension(
                            e.getGeneralDataset(),
                            DatasetSelectionExtension.class);

                // work on the data
                selectionExtension.setSelected(cursor, true);
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.jfree.data.extension.DatasetSelectionExtension

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.