- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {}
/** * Get a raw reference to a provided service implementation. */ public Object[] getRawServices(Class type) { IService[] sers = getServiceContainer().getProvidedServices(type); Object[] ret = new Object[sers.length]; for(int i=0; i<ret.length; i++) { convertRawService(sers[i]); } return ret; }
/** * Get a raw reference to a provided service implementation. */ public Object getRawService(Class type) { assert !getComponentAdapter().isExternalThread(); IService[] sers = getServiceContainer().getProvidedServices(type); return convertRawService(sers[0]); }
/** * Get a raw reference to a provided service implementation. */ public Object getRawService(String name) { assert !getComponentAdapter().isExternalThread(); return convertRawService(getServiceContainer().getProvidedService(name)); }