Package org.jamesii.core.base

Examples of org.jamesii.core.base.IEntity


  @Override
  @SuppressWarnings("unchecked")
  // Has to be ensured by observer to use, otherwise exception should be thrown
  public void instrumentComputation(IComputationTask computation) {
    IEntity target = getObservationTarget(computation);
    Mediator.create(target);
    target.registerObserver(observerToUse);
    try {
      ((IObserver<IEntity>) observerToUse).update(target,
          new ProcessorObservationHint(this));
    } catch (ClassCastException ex) {
      throw new IllegalArgumentException(
View Full Code Here

TOP

Related Classes of org.jamesii.core.base.IEntity

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.