Examples of IScopedEvent


Examples of org.groovymud.engine.event.IScopedEvent

public class ObservableTest extends TestCase {

  public void testNotifyObservers() {
    MockControl eventCtrl = MockControl.createControl(IScopedEvent.class);
    IScopedEvent event = (IScopedEvent) eventCtrl.getMock();
    eventCtrl.replay();
    final HashSet observers = new HashSet();

    Observable obj = new Observable() {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.