Package org.eclipse.ecf.internal.core.sharedobject

Examples of org.eclipse.ecf.internal.core.sharedobject.Activator


   */
  public Object getAdapter(Class adapter) {
    if (adapter.isInstance(this)) {
      return this;
    }
    Activator activator = Activator.getDefault();
    if (activator == null)
      return null;
    final IAdapterManager adapterManager = activator.getAdapterManager();
    if (adapterManager == null)
      return null;
    return adapterManager.loadAdapter(this, adapter.getName());
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.internal.core.sharedobject.Activator

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.