use of com.ibm.oti.shared.SharedClassURLClasspathHelper in project openj9 by eclipse.
the class CustomURLClassLoader method getHelper.
public void getHelper(URL[] urls) throws HelperAlreadyDefinedException {
SharedClassHelperFactory schFactory = Shared.getSharedClassHelperFactory();
SharedClassURLClasspathHelper newHelper = null;
newHelper = schFactory.getURLClasspathHelper(this, urls);
}
use of com.ibm.oti.shared.SharedClassURLClasspathHelper in project openj9 by eclipse.
the class CustomURLClassLoaderNonConfirming method getHelper.
public void getHelper(URL[] urls) throws HelperAlreadyDefinedException {
SharedClassHelperFactory schFactory = Shared.getSharedClassHelperFactory();
SharedClassURLClasspathHelper newHelper = null;
newHelper = schFactory.getURLClasspathHelper(this, urls);
}
use of com.ibm.oti.shared.SharedClassURLClasspathHelper in project openj9 by eclipse.
the class CustomPartitioningURLCL method getHelper.
public void getHelper(URL[] urls) throws HelperAlreadyDefinedException {
SharedClassHelperFactory schFactory = Shared.getSharedClassHelperFactory();
SharedClassURLClasspathHelper newHelper = null;
newHelper = schFactory.getURLClasspathHelper(this, urls);
}
use of com.ibm.oti.shared.SharedClassURLClasspathHelper in project openj9 by eclipse.
the class CustomTokenClassLoader method getURLClasspathHelper.
public void getURLClasspathHelper() throws HelperAlreadyDefinedException {
SharedClassHelperFactory schFactory = Shared.getSharedClassHelperFactory();
SharedClassURLClasspathHelper newHelper = null;
newHelper = schFactory.getURLClasspathHelper(this, urls);
}
use of com.ibm.oti.shared.SharedClassURLClasspathHelper in project openj9 by eclipse.
the class CustomPartitioningURLClassLoader method getHelper.
public boolean getHelper() {
SharedClassHelperFactory schFactory = Shared.getSharedClassHelperFactory();
SharedClassURLClasspathHelper newHelper = null;
try {
newHelper = schFactory.getURLClasspathHelper(this, orgUrls);
} catch (HelperAlreadyDefinedException e) {
return false;
}
if (newHelper.equals(scHelper)) {
return true;
} else {
return false;
}
}
Aggregations