Package jsky.image.fits.gui

Examples of jsky.image.fits.gui.FITSKeywordsFrame


    public void viewFitsKeywords() {
        if (_fitsKeywordsFrame != null) {
            SwingUtil.showFrame(_fitsKeywordsFrame);
            _fitsKeywordsFrame.getFITSKeywords().updateDisplay();
        } else {
            _fitsKeywordsFrame = new FITSKeywordsFrame(this);
        }
    }
View Full Code Here


                TableQueryResult table = NavigatorFITSTable.getTable(getFilename(), fitsImage.getFits(), hduIndex);
                showNavigatorFrame(null);
                openCatalogWindow(table.getCatalog());

                // update the FITS header display, if needed
                FITSKeywordsFrame fitsKeywordsFrame = getFitsKeywordsFrame();
                if (fitsKeywordsFrame != null) {
                    fitsKeywordsFrame.getFITSKeywords().updateDisplay(hduIndex);
                }
            } catch (Exception e) {
                DialogUtil.error(this, e);
            }
        }
View Full Code Here

TOP

Related Classes of jsky.image.fits.gui.FITSKeywordsFrame

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.