Package org.eclipse.ecf.core.provider

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

Related Classes of org.eclipse.ecf.core.provider.IContainerInstantiator

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.