Package org.objectweb.fractal.api

Examples of org.objectweb.fractal.api.NoSuchInterfaceException


  @Override
  public Object lookupFc(String itfName) throws NoSuchInterfaceException {
    if(itfName.compareTo("sc") == 0)
      return sc;
    else throw new NoSuchInterfaceException(itfName);
  }
View Full Code Here


  @Override
  public void unbindFc(String itfName) throws NoSuchInterfaceException {
    if(itfName.compareTo("sc") == 0)
      sc = null;
    else throw new NoSuchInterfaceException(itfName);
  }
View Full Code Here

TOP

Related Classes of org.objectweb.fractal.api.NoSuchInterfaceException

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.