Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2016-09-12 10:27:26 +0000
committerSarika Sinha2016-09-12 10:27:26 +0000
commit44c74be43317d3448998d75ea78cd1088533bed6 (patch)
tree2d00a8a1b779ab46b56cf1f7214a3be9e72ee388 /org.eclipse.debug.core
parent752fd8d9aa463785c6383617d32cbd9256b1555d (diff)
downloadeclipse.platform.debug-44c74be43317d3448998d75ea78cd1088533bed6.tar.gz
eclipse.platform.debug-44c74be43317d3448998d75ea78cd1088533bed6.tar.xz
eclipse.platform.debug-44c74be43317d3448998d75ea78cd1088533bed6.zip
Bug 488664 - [Breakpoints] Ability to set up Breakpoint dependencyI20160912-0800
Diffstat (limited to 'org.eclipse.debug.core')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManager.java14
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManagerListener.java2
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java8
3 files changed, 12 insertions, 12 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManager.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManager.java
index eefd16e89..e232732e7 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManager.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManager.java
@@ -269,7 +269,7 @@ public interface IBreakpointManager {
* <code>null</code> if none exists
* @since 3.11
*/
- default public IBreakpoint[] getTriggerBreakpoints() {
+ public default IBreakpoint[] getTriggerBreakpoints() {
return null;
}
@@ -289,7 +289,7 @@ public interface IBreakpointManager {
* </ul>
* @since 3.11
*/
- default public void addTriggerBreakpoint(IBreakpoint breakpoint) throws CoreException {
+ public default void addTriggerBreakpoint(IBreakpoint breakpoint) throws CoreException {
}
/**
@@ -308,7 +308,7 @@ public interface IBreakpointManager {
* </ul>
* @since 3.11
*/
- default public void removeTriggerBreakpoint(IBreakpoint breakpoint) throws CoreException {
+ public default void removeTriggerBreakpoint(IBreakpoint breakpoint) throws CoreException {
}
/**
@@ -318,7 +318,7 @@ public interface IBreakpointManager {
* underlying marker.
* @since 3.11
*/
- default public void removeAllTriggerpoints() throws CoreException {
+ public default void removeAllTriggerpoints() throws CoreException {
}
/**
@@ -327,7 +327,7 @@ public interface IBreakpointManager {
* @return return <code>true</code> if a breakpoint can suspend
* @since 3.11
*/
- default public boolean canSupendOnBreakpoint() {
+ public default boolean canSupendOnBreakpoint() {
return true;
}
@@ -338,7 +338,7 @@ public interface IBreakpointManager {
* <code>null<code> to deactivate all trigger points
* @since 3.11
*/
- default public void deActivateTriggerpoints(IBreakpoint[] triggerointList) {
+ public default void deActivateTriggerpoints(IBreakpoint[] triggerointList) {
}
/**
@@ -346,7 +346,7 @@ public interface IBreakpointManager {
*
* @since 3.11
*/
- default public void refreshTriggerpointDisplay() {
+ public default void refreshTriggerpointDisplay() {
}
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManagerListener.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManagerListener.java
index c9deda160..30a0b7431 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManagerListener.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/IBreakpointManagerListener.java
@@ -40,6 +40,6 @@ public interface IBreakpointManagerListener {
* @param triggerBreakpoint new trigger breakpoint or <code>null<code>
* @since 3.11
*/
- default public void breakpointManagerTriggerPointChanged(IBreakpoint triggerBreakpoint) {
+ public default void breakpointManagerTriggerPointChanged(IBreakpoint triggerBreakpoint) {
}
}
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java
index ba0848ca5..cc30adab6 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java
@@ -226,7 +226,7 @@ public interface IBreakpoint extends IAdaptable {
* this breakpoint's underlying marker
* @since 3.11
*/
- default public boolean isTriggerPoint() throws CoreException {
+ public default boolean isTriggerPoint() throws CoreException {
return false;
}
@@ -241,7 +241,7 @@ public interface IBreakpoint extends IAdaptable {
* this breakpoint's underlying marker.
* @since 3.11
*/
- default public void setTriggerPoint(boolean trigger) throws CoreException {
+ public default void setTriggerPoint(boolean trigger) throws CoreException {
}
/**
@@ -255,7 +255,7 @@ public interface IBreakpoint extends IAdaptable {
* this breakpoint's underlying marker.
* @since 3.11
*/
- default public void setTriggerPointActive(boolean active) throws CoreException {
+ public default void setTriggerPointActive(boolean active) throws CoreException {
}
/**
@@ -266,7 +266,7 @@ public interface IBreakpoint extends IAdaptable {
* this breakpoint's underlying marker
* @since 3.11
*/
- default public boolean isTriggerPointActive() throws CoreException {
+ public default boolean isTriggerPointActive() throws CoreException {
return false;
}

Back to the top