Package com.seaglasslookandfeel.icons

Examples of com.seaglasslookandfeel.icons.FloppyDiskIcon.paintIcon()


    }

    private void paintFloppyDiskIcon(Graphics2D g, JComponent c, int width, int height) {
        FloppyDiskIcon icon = new FloppyDiskIcon();
        icon.setDimension(new Dimension(width, height));
        icon.paintIcon(c, g, 0, 0);
    }

    private void paintHardDriveIcon(Graphics2D g, JComponent c, int width, int height) {
        HardDiskIcon icon = new HardDiskIcon();
        icon.setDimension(new Dimension(width, height));
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.