Package jsky.catalog

Examples of jsky.catalog.TestTableQueryResult


            else
                System.out.println("XXX couldn't find the catalog entry");
        } else {
            System.out.println("XXX couldn't find catalog named " + getName());
        }
        return new TestTableQueryResult();
    }
View Full Code Here


     *
     * @param args not used
     */
    public static void main(String[] args) {
        JFrame frame = new JFrame("TableDisplay");
        TableDisplay tableDisplay = new TableDisplay(new TestTableQueryResult());

        frame.getContentPane().add(tableDisplay, BorderLayout.CENTER);
        frame.pack();
        frame.setVisible(true);
        frame.addWindowListener(new BasicWindowMonitor());
View Full Code Here

TOP

Related Classes of jsky.catalog.TestTableQueryResult

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.