Package gistoolkit.server.mapclient.images

Examples of gistoolkit.server.mapclient.images.ImageSource


    /** Testing. */
    public static void main(String[] inArgs){
        JDialog tempDialog = new JDialog();
        tempDialog.setModal(true);
        ImagePanel tempImagePanel = new ImagePanel();
        tempImagePanel.setImage(new ImageSource().getImage("g.png"));
        tempImagePanel.setBorder(BorderFactory.createEtchedBorder(EtchedBorder.LOWERED));
        tempDialog.setContentPane(tempImagePanel);
        tempDialog.setSize(200,200);
        tempDialog.setTitle("Testing the ImagePanel");
        tempDialog.show();
View Full Code Here

TOP

Related Classes of gistoolkit.server.mapclient.images.ImageSource

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.