Package name.abuchen.portfolio.util

Examples of name.abuchen.portfolio.util.IniFileManipulator


        // -clearPersistedState is set *after* installing new software, but must
        // be cleared for the next runs

        try
        {
            IniFileManipulator m = new IniFileManipulator();
            m.load();
            m.unsetClearPersistedState();
            if (m.isDirty())
                m.save();
        }
        catch (IOException ignore)
        {
            PortfolioPlugin.log(ignore);
        }
View Full Code Here


    private void setClearPersistedStateFlag()
    {
        try
        {
            IniFileManipulator m = new IniFileManipulator();
            m.load();
            m.setClearPersistedState();
            if (m.isDirty())
                m.save();
        }
        catch (IOException ignore)
        {
            PortfolioPlugin.log(ignore);
        }
View Full Code Here

TOP

Related Classes of name.abuchen.portfolio.util.IniFileManipulator

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.