Package org.jamesii.core.observe

Examples of org.jamesii.core.observe.ObserverException


  }

  @Override
  public final void registerObserver(IObserver observer) {
    if (getMediator() == null) {
      throw new ObserverException(
          "You have to set a mediator before you can register an observer!");
    }
    this.getMediator().register(this, observer);
  }
View Full Code Here

TOP

Related Classes of org.jamesii.core.observe.ObserverException

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.