Package jsky.catalog.gui

Examples of jsky.catalog.gui.TableDisplayTool


     * @param stats    describes the selected object
     * @param isUpdate set to true if this is just an update of the previously selected position
     */
    public void addToTable(PickObjectStatistics stats, boolean isUpdate) {
        TableQueryResult table = null;
        TableDisplayTool tableDisplayTool = null;

        // see if a table is already being displayed, and if so, use it

        JComponent resultComponent = _navigator.getResultComponent();
        if (resultComponent instanceof TableDisplayTool) {
            tableDisplayTool = (TableDisplayTool) resultComponent;
            table = tableDisplayTool.getTableDisplay().getTableQueryResult();
        }

        if (table == null) {
            // no table being displayed: make a new table
            table = _makeTable(stats);
View Full Code Here

TOP

Related Classes of jsky.catalog.gui.TableDisplayTool

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.