Examples of PictureGraphic


Examples of net.helipilot50.stocktrade.displayproject.controls.PictureGraphic

        PictureGraphic jl = newPictureGraphic(name, imageGravity);
        jl.setIcon(icon);
        return jl;
    }
    public static PictureGraphic newPictureGraphic(String name, URL resource, int imageGravity){
        PictureGraphic label = null;
        if (resource != null) {
            try {
                BufferedImage image = ImageIO.read(resource);
                if (image != null) {
                    ImageIcon icon = new ImageIcon(image);
                    label = newPictureGraphic(name, icon, imageGravity);
                }
                else
                    label = newPictureGraphic(name, Constants.CG_TOPLEFT);
                    label.setText("<" + resource + ">");
            } catch (IOException e) {
                label = newPictureGraphic(name, Constants.CG_TOPLEFT);
                label.setText("<" + resource + ">");
            }
        }
        else{
            label = newPictureGraphic(name, Constants.CG_TOPLEFT);
            label.setText("< unknown resource >");
        }
        return label;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.