Package org.araneaframework.core

Examples of org.araneaframework.core.NoSuchNarrowableException


    extensions.put(interfaceClass, implementation);
  }

  public Object narrow(Class interfaceClass) {
    if (!extensions.containsKey(interfaceClass))
      throw new NoSuchNarrowableException(interfaceClass);
    return extensions.get(interfaceClass);
  }
View Full Code Here


  }

  public Object narrow(Class interfaceClass) {
    Object extension = extensions.get(interfaceClass);
    if (extension == null)
      throw new NoSuchNarrowableException(interfaceClass);
    return extension;
  }
View Full Code Here

TOP

Related Classes of org.araneaframework.core.NoSuchNarrowableException

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.