Package org.eclipse.ecf.internal.core.identity

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


    addNamespace0(new URIID.URIIDNamespace());
  }

  private synchronized static void initialize() {
    if (!initialized) {
      Activator a = Activator.getDefault();
      if (a != null)
        a.setupNamespaceExtensionPoint();
      initialized = true;
    }
  }
View Full Code Here


      throws Exception {
    // by default do nothing
  }

  protected void logWarning(Throwable exception) {
    Activator a = Activator.getDefault();
    if (a != null)
      a.log(new Status(IStatus.WARNING, Activator.PLUGIN_ID,
          IStatus.WARNING, "Warning: code cannot be run", exception)); //$NON-NLS-1$
  }
View Full Code Here

  }

  protected static boolean shouldTrace0(String option) {
    if (option == null)
      return false;
    Activator activator = Activator.getDefault();
    if (activator == null)
      return false;
    DebugOptions debugOptions = activator.getDebugOptions();
    if (debugOptions == null)
      return false;
    String result = debugOptions.getOption(option);
    return (result == null) ? false : result.equalsIgnoreCase("true"); //$NON-NLS-1$
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.internal.core.identity.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.