Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2012-07-31 12:20:29 +0000
committerDani Megert2012-07-31 12:20:29 +0000
commitb0ae59569631fa54b9063bd5a4f151a77aaf6821 (patch)
treeac863d585df1cdfeba7244ffcff09c96cf332fe4
parent62b504e71eb1a4be4649ec9bb698e74ad213211e (diff)
downloadeclipse.platform.debug-b0ae59569631fa54b9063bd5a4f151a77aaf6821.tar.gz
eclipse.platform.debug-b0ae59569631fa54b9063bd5a4f151a77aaf6821.tar.xz
eclipse.platform.debug-b0ae59569631fa54b9063bd5a4f151a77aaf6821.zip
Fixed wrong @since tags
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ImportBreakpointsOperation.java65
1 files changed, 35 insertions, 30 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ImportBreakpointsOperation.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ImportBreakpointsOperation.java
index f9ff7071f..2599e5477 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ImportBreakpointsOperation.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/ImportBreakpointsOperation.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2011 IBM Corporation and others.
+ * Copyright (c) 2005, 2012 IBM Corporation 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
@@ -27,14 +27,26 @@ import java.util.Iterator;
import java.util.List;
import java.util.Map;
-import org.eclipse.core.resources.IMarker;
-import org.eclipse.core.resources.IResource;
-import org.eclipse.core.resources.IWorkspaceRoot;
-import org.eclipse.core.resources.ResourcesPlugin;
+import com.ibm.icu.text.MessageFormat;
+
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.SubMonitor;
+
+import org.eclipse.core.resources.IMarker;
+import org.eclipse.core.resources.IResource;
+import org.eclipse.core.resources.IWorkspaceRoot;
+import org.eclipse.core.resources.ResourcesPlugin;
+
+import org.eclipse.jface.operation.IRunnableWithProgress;
+
+import org.eclipse.ui.IMemento;
+import org.eclipse.ui.IWorkingSet;
+import org.eclipse.ui.IWorkingSetManager;
+import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.XMLMemento;
+
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.debug.core.model.IBreakpointImportParticipant;
@@ -42,15 +54,8 @@ import org.eclipse.debug.internal.core.BreakpointManager;
import org.eclipse.debug.internal.ui.IInternalDebugUIConstants;
import org.eclipse.debug.internal.ui.importexport.breakpoints.IImportExportConstants;
import org.eclipse.debug.internal.ui.importexport.breakpoints.ImportExportMessages;
-import org.eclipse.debug.ui.IDebugUIConstants;
-import org.eclipse.jface.operation.IRunnableWithProgress;
-import org.eclipse.ui.IMemento;
-import org.eclipse.ui.IWorkingSet;
-import org.eclipse.ui.IWorkingSetManager;
-import org.eclipse.ui.PlatformUI;
-import org.eclipse.ui.XMLMemento;
-import com.ibm.icu.text.MessageFormat;
+import org.eclipse.debug.ui.IDebugUIConstants;
/**
* Imports breakpoints from a file or string buffer into the workspace.
@@ -99,15 +104,15 @@ public class ImportBreakpointsOperation implements IRunnableWithProgress {
/**
* Constructs an operation to import breakpoints.
*
- * @param fileName the file to read breakpoints from - the file should have been
- * created from an export operation
+ * @param fileName the file to read breakpoints from - the file should have been created from an
+ * export operation
* @param overwrite whether imported breakpoints will overwrite existing equivalent breakpoints
- * @param createWorkingSets whether breakpoint working sets should be created. Breakpoints
- * are exported with information about the breakpoint working sets they belong to. Those
- * working sets can be optionally re-created on import if they do not already exist in the
- * workspace.
- * @param importBreakpoints whether breakpoints should be imported and registered
- * @since 3.8
+ * @param createWorkingSets whether breakpoint working sets should be created. Breakpoints are
+ * exported with information about the breakpoint working sets they belong to. Those
+ * working sets can be optionally re-created on import if they do not already exist
+ * in the workspace.
+ * @param importBreakpoints whether breakpoints should be imported and registered
+ * @since 3.9
*/
public ImportBreakpointsOperation(String fileName, boolean overwrite, boolean createWorkingSets, boolean importBreakpoints) {
fFileName = fileName;
@@ -134,18 +139,18 @@ public class ImportBreakpointsOperation implements IRunnableWithProgress {
}
/**
- * Constructs an operation to import breakpoints from a string buffer. The buffer
- * must contain a memento created an {@link ExportBreakpointsOperation}.
+ * Constructs an operation to import breakpoints from a string buffer. The buffer must contain a
+ * memento created an {@link ExportBreakpointsOperation}.
*
- * @param buffer the string buffer to read breakpoints from - the file should have been
- * created from an export operation
+ * @param buffer the string buffer to read breakpoints from - the file should have been created
+ * from an export operation
* @param overwrite whether imported breakpoints will overwrite existing equivalent breakpoints
- * @param createWorkingSets whether breakpoint working sets should be created. Breakpoints
- * are exported with information about the breakpoint working sets they belong to. Those
- * working sets can be optionally re-created on import if they do not already exist in the
- * workspace.
+ * @param createWorkingSets whether breakpoint working sets should be created. Breakpoints are
+ * exported with information about the breakpoint working sets they belong to. Those
+ * working sets can be optionally re-created on import if they do not already exist
+ * in the workspace.
* @param importBreakpoints whether breakpoints should be imported and registered
- * @since 3.8
+ * @since 3.9
*/
public ImportBreakpointsOperation(StringBuffer buffer, boolean overwrite, boolean createWorkingSets, boolean importBreakpoints) {
fBuffer = buffer;

Back to the top