Examples of JDIDebugPlugin


Examples of org.eclipse.jdt.internal.debug.core.JDIDebugPlugin

   *
   * @param target
   *            debug target
   */
  protected void fireAdding(IJavaDebugTarget target) {
    JDIDebugPlugin plugin = JDIDebugPlugin.getDefault();
    if (plugin != null)
      plugin.fireBreakpointAdding(target, this);
  }
View Full Code Here

Examples of org.eclipse.jdt.internal.debug.core.JDIDebugPlugin

   *
   * @param target
   *            debug target
   */
  protected void fireRemoved(IJavaDebugTarget target) {
    JDIDebugPlugin plugin = JDIDebugPlugin.getDefault();
    if (plugin != null) {
      plugin.fireBreakpointRemoved(target, this);
      setInstalledIn(target, false);
    }
  }
View Full Code Here

Examples of org.eclipse.jdt.internal.debug.core.JDIDebugPlugin

   *
   * @param target
   *            debug target
   */
  protected void fireInstalled(IJavaDebugTarget target) {
    JDIDebugPlugin plugin = JDIDebugPlugin.getDefault();
    if (plugin != null && !isInstalledIn(target)) {
      plugin.fireBreakpointInstalled(target, this);
      setInstalledIn(target, true);
    }
  }
View Full Code Here

Examples of org.eclipse.jdt.internal.debug.core.JDIDebugPlugin

   *            reference type or <code>null</code> if this breakpoint is not
   *            installed in a specific type
   */
  protected boolean queryInstallListeners(JDIDebugTarget target,
      ReferenceType type) {
    JDIDebugPlugin plugin = JDIDebugPlugin.getDefault();
    if (plugin != null) {
      IJavaType jt = null;
      if (type != null) {
        jt = JDIType.createType(target, type);
      }
      return plugin.fireInstalling(target, this, jt);
    }
    return false;
  }
View Full Code Here

Examples of org.eclipse.jdt.internal.debug.core.JDIDebugPlugin

   * @return the preference store for this plug-in
   * @since 2.0
   * @deprecated the {@link Preferences} class has been deprecated, use the {@link IEclipsePreferences} accessors instead
   */
  public static Preferences getPreferences() {
    JDIDebugPlugin deflt = JDIDebugPlugin.getDefault();
    if (deflt != null) {
      return deflt.getPluginPreferences();
    }
    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.