Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/breakpoints/BreakpointsChangedEvent.java')
-rw-r--r--dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/breakpoints/BreakpointsChangedEvent.java72
1 files changed, 36 insertions, 36 deletions
diff --git a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/breakpoints/BreakpointsChangedEvent.java b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/breakpoints/BreakpointsChangedEvent.java
index 23dd0c265be..514495b0d34 100644
--- a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/breakpoints/BreakpointsChangedEvent.java
+++ b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/breakpoints/BreakpointsChangedEvent.java
@@ -1,36 +1,36 @@
-/*******************************************************************************
- * Copyright (c) 2008 Wind River Systems and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Wind River Systems - initial API and implementation
- *******************************************************************************/
-package org.eclipse.cdt.dsf.debug.ui.viewmodel.breakpoints;
-
-import org.eclipse.debug.core.model.IBreakpoint;
-
-/**
- * @since 2.1
- */
-public class BreakpointsChangedEvent {
- public enum Type { ADDED, REMOVED, CHANGED };
-
- private final Type fType;
- private final IBreakpoint[] fBreakpoints;
-
- public BreakpointsChangedEvent(Type type, IBreakpoint[] breakpoints) {
- fType = type;
- fBreakpoints = breakpoints;
- }
-
- public Type getType() {
- return fType;
- }
-
- public IBreakpoint[] getBreakpoints() {
- return fBreakpoints;
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2008, 2010 Wind River Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.cdt.dsf.debug.ui.viewmodel.breakpoints;
+
+import org.eclipse.debug.core.model.IBreakpoint;
+
+/**
+ * @since 2.1
+ */
+public class BreakpointsChangedEvent {
+ public enum Type { ADDED, REMOVED, CHANGED };
+
+ private final Type fType;
+ private final IBreakpoint[] fBreakpoints;
+
+ public BreakpointsChangedEvent(Type type, IBreakpoint[] breakpoints) {
+ fType = type;
+ fBreakpoints = breakpoints;
+ }
+
+ public Type getType() {
+ return fType;
+ }
+
+ public IBreakpoint[] getBreakpoints() {
+ return fBreakpoints;
+ }
+}

Back to the top