Package uk.gov.nationalarchives.droid.gui

Examples of uk.gov.nationalarchives.droid.gui.GlobalContext


        properties.put(DroidGlobalProperty.UPDATE_AUTOSET_DEFAULT.getName(), Boolean.FALSE);
       
        DroidGlobalConfig globalConfig = mock(DroidGlobalConfig.class);
        when(globalConfig.getPropertiesMap()).thenReturn(properties);
       
        GlobalContext globalContext = mock(GlobalContext.class);
        when(globalContext.getGlobalConfig()).thenReturn(globalConfig);
       
        configDialog = new ConfigDialog(null, globalContext);
        configDialog.setModal(false);
        configDialog.setVisible(true);
    }
View Full Code Here

TOP

Related Classes of uk.gov.nationalarchives.droid.gui.GlobalContext

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.