예제 #1
0
  private GwtTestClassLoader() throws NotFoundException, CannotCompileException {
    super(PatchGwtClassPool.get());

    init();

    ConfigurationLoader configurationLoader = ConfigurationLoader.createInstance(this.getParent());

    for (String s : configurationLoader.getDelegateList()) {
      delegateLoadingOf(s);
    }
    for (String s : configurationLoader.getNotDelegateList()) {
      notDelegateLoadingOf(s);
    }

    translator = new GwtTranslator(configurationLoader.getPatchers());
    addTranslator(PatchGwtClassPool.get(), translator);
  }