Examples of IContainerInstantiator


Examples of org.eclipse.ecf.core.provider.IContainerInstantiator

    String method = "getPropertiesForImportedConfigs"; //$NON-NLS-1$
    Trace.entering(ECFPlugin.PLUGIN_ID, ECFDebugOptions.METHODS_ENTERING, this.getClass(), method);
    if (importedConfigs == null)
      return null;
    try {
      IContainerInstantiator ci = getInstantiator();
      return (ci instanceof IRemoteServiceContainerInstantiator) ? ((IRemoteServiceContainerInstantiator) ci).getPropertiesForImportedConfigs(this, importedConfigs, exportedProperties) : null;
    } catch (Exception e) {
      traceAndLogException(IStatus.ERROR, method, e);
      return null;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.