Package net.sourceforge.torchlight.data.preferences

Examples of net.sourceforge.torchlight.data.preferences.Preferences


        addCreatureDataAction = new AddCreatureDataAction(window);
       
        deleteCampaignItemAction = new DeleteCampaignItemAction(window);
        deleteCampaignItemAction.setEnabled(false);
       
        Preferences prefs = Application.getApplication().getPreferences();
       
        toggleDMItemsAction = new ShowDMItemsAction(window);
        toggleDMItemsAction.setChecked(Boolean.parseBoolean(prefs.getValue(IPreferenceConstants.SHOW_DM_ITEMS).getValue()));
        toggleMechanicsItemsAction = new ShowMechanicsItemsAction(window);
        toggleMechanicsItemsAction.setChecked(Boolean.parseBoolean(prefs.getValue(IPreferenceConstants.SHOW_MECHANICS_ITEMS).getValue()));
       
        // startGameSessionAction = new StartGameSessionAction(window);
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.torchlight.data.preferences.Preferences

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.