Package mae.util

Examples of mae.util.PropertyManager


    }

    void loadProps() {
        Dimension t = getToolkit().getScreenSize();
        int W = 560, H = 430, x = t.width-W, y = t.height-H-25;
        pm = new PropertyManager("mae", "Fide", getClass());
        frm.setBounds(pm.getBounds("frame", x, y, W, H));
        Font f = new Font("Monospaced", 0, 12);
        src.setFont(pm.getFont("font", f));
        setTAB(pm.getInteger("tab.size", 4));
        juniorCoderCodeCompletation = Boolean.parseBoolean(pm.getProperty("JuniorCoder.CodeCompletation",true+""));
View Full Code Here

TOP

Related Classes of mae.util.PropertyManager

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.