Package com.cognifide.slice.core.internal.execution

Examples of com.cognifide.slice.core.internal.execution.ExecutionContextImpl


  public Object get(String className, String path) throws ClassNotFoundException {
    final Key<?> key = classToKeyMapper.getKey(className);
    if (key == null) {
      throw new ClassNotFoundException("key for class " + className + " not found");
    }
    ExecutionContextImpl executionItem = new ExecutionContextImpl(path);
    LOG.debug("creating new instance for {} from {}", new Object[] { key.toString(), path });
    return get(key, executionItem);
  }
View Full Code Here


  public Object get(String className, Resource resource) throws ClassNotFoundException {
    final Key<?> key = classToKeyMapper.getKey(className);
    if (key == null) {
      throw new ClassNotFoundException("key for class " + className + " not found");
    }
    ExecutionContextImpl executionItem = new ExecutionContextImpl(resource);
    LOG.debug("creating new instance for {} from {}", new Object[] { key.toString(), resource });
    return get(key, executionItem);
  }
View Full Code Here

TOP

Related Classes of com.cognifide.slice.core.internal.execution.ExecutionContextImpl

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.