Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/LineBreakpoint.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/LineBreakpoint.java20
1 files changed, 13 insertions, 7 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/LineBreakpoint.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/LineBreakpoint.java
index 76f365ede..c43f3555f 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/LineBreakpoint.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/LineBreakpoint.java
@@ -1,9 +1,15 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
package org.eclipse.debug.core.model;
-/*
- * (c) Copyright IBM Corp. 2000, 2001.
- * All Rights Reserved.
- */
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.runtime.CoreException;
@@ -30,7 +36,7 @@ public abstract class LineBreakpoint extends Breakpoint implements ILineBreakpoi
}
return -1;
}
-
+
/**
* @see ILineBreakpoint#getCharStart()
*/
@@ -41,7 +47,7 @@ public abstract class LineBreakpoint extends Breakpoint implements ILineBreakpoi
}
return -1;
}
-
+
/**
* @see ILineBreakpoint#getCharEnd()
*/
@@ -51,6 +57,6 @@ public abstract class LineBreakpoint extends Breakpoint implements ILineBreakpoi
return m.getAttribute(IMarker.CHAR_END, -1);
}
return -1;
- }
+ }
}

Back to the top