Package gov.nasa.arc.mct.roles.events

Examples of gov.nasa.arc.mct.roles.events.ReloadEvent


    @Test
    public void testUpdateMonitoredGUI_Reload() {
        PlatformAccess access = new PlatformAccess();
        access.setPlatform(new MockPlatform());
       
        ReloadEvent event = new ReloadEvent(mockComponent);
        Assert.assertFalse(rootNode.isProxy());
        nodeViewManifestation.addMonitoredGUI(rootNode);
        nodeViewManifestation.updateMonitoredGUI(event);
        Assert.assertTrue(rootNode.isProxy());
    }
View Full Code Here

TOP

Related Classes of gov.nasa.arc.mct.roles.events.ReloadEvent

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.