Package org.eclipse.ecf.internal.core

Examples of org.eclipse.ecf.internal.core.ECFPlugin


    if (serviceType == null)
      return null;
    if (serviceType.isInstance(this)) {
      return this;
    }
    ECFPlugin plugin = ECFPlugin.getDefault();
    if (plugin == null)
      return null;
    IAdapterManager adapterManager = plugin.getAdapterManager();
    return (adapterManager == null) ? null : adapterManager.loadAdapter(this, serviceType.getName());
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.internal.core.ECFPlugin

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.