Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonah Graham2018-11-20 16:20:42 +0000
committerJonah Graham2018-11-22 21:47:02 +0000
commit170e654b4796bad1453ae85a427b97317d67a69a (patch)
tree6ca9b8a8fedd5fd25f97eb79c408312e256ff981 /debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/ICEventBreakpoint.java
parent35996a5c5ca5c254959ba48241eaada6dbf8628d (diff)
downloadorg.eclipse.cdt-170e654b4796bad1453ae85a427b97317d67a69a.tar.gz
org.eclipse.cdt-170e654b4796bad1453ae85a427b97317d67a69a.tar.xz
org.eclipse.cdt-170e654b4796bad1453ae85a427b97317d67a69a.zip
Bug 540373: Cleanup: Format & Remove trailing whitespace
This was done by selecting all projects in Eclipse then Source -> Clean Up... -> choosing: - Format source code - Remove trailing white spaces on all lines and completing the wizard Change-Id: I63685372c6bcc67719bcf145123bcb72e5b00394
Diffstat (limited to 'debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/ICEventBreakpoint.java')
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/ICEventBreakpoint.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/ICEventBreakpoint.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/ICEventBreakpoint.java
index 7a508b0d101..8f08ab614b5 100644
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/ICEventBreakpoint.java
+++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/model/ICEventBreakpoint.java
@@ -1,6 +1,6 @@
/*******************************************************************************
* Copyright (c) 2008, 2012 QNX Software Systems and others.
- *
+ *
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -20,27 +20,27 @@ import org.eclipse.core.runtime.CoreException;
/**
* Interface for debugger event breakpoints. Example of event breakpoint
* is break on raising exception in C++, or break on receiving signal.
- *
+ *
* @sinse 5.0
* @since 7.0
*/
public interface ICEventBreakpoint extends ICBreakpoint {
- /**
- * Breakpoint marker type for this breakpoint type.
- * @since 7.2
- */
- public static final String C_EVENT_BREAKPOINT_MARKER = "org.eclipse.cdt.debug.core.cEventBreakpointMarker"; //$NON-NLS-1$;
-
+ /**
+ * Breakpoint marker type for this breakpoint type.
+ * @since 7.2
+ */
+ public static final String C_EVENT_BREAKPOINT_MARKER = "org.eclipse.cdt.debug.core.cEventBreakpointMarker"; //$NON-NLS-1$;
+
/**
* Breakpoint attribute storing the event breakpoint event id. Basically,
* this indicates what type of event the breakpoint catches--e.g., a C++
* exception throw, a library load, a thread exit, etc. Event types are
* contributed via the "breakpointContribution" extension point.
- *
+ *
* <p>
* This attribute is a <code>String</code>.
- *
+ *
*/
public static final String EVENT_TYPE_ID = "org.eclipse.cdt.debug.core.eventbreakpoint_event_id"; //$NON-NLS-1$
@@ -50,12 +50,12 @@ public interface ICEventBreakpoint extends ICBreakpoint {
* representation of another type (it may be a number, for example).
* Currently, an event type can have only one argument
*/
- public static final String EVENT_ARG = "org.eclipse.cdt.debug.core.eventbreakpoint_event_arg"; //$NON-NLS-1$
+ public static final String EVENT_ARG = "org.eclipse.cdt.debug.core.eventbreakpoint_event_arg"; //$NON-NLS-1$
/**
* Get the event breakpoint type. Same as querying the property
* {@link #EVENT_TYPE_ID}
- *
+ *
* @return event breakpoint type id (not null)
* @throws CoreException
*/
@@ -65,7 +65,7 @@ public interface ICEventBreakpoint extends ICBreakpoint {
* Get the event argument, if the type has one. Currently, an event type can
* have at most one argument. Same as querying the property
* {@link #EVENT_ARG}
- *
+ *
* @return event argument, or null if not applicable
* @throws CoreException
*/

Back to the top