Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.launch.core')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.launch.core/src/org/eclipse/tcf/te/launch/core/steps/AbstractLaunchStep.java24
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.launch.core/src/org/eclipse/tcf/te/launch/core/steps/RemoveLaunchStep.java16
2 files changed, 22 insertions, 18 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.launch.core/src/org/eclipse/tcf/te/launch/core/steps/AbstractLaunchStep.java b/target_explorer/plugins/org.eclipse.tcf.te.launch.core/src/org/eclipse/tcf/te/launch/core/steps/AbstractLaunchStep.java
index 0eede62f0..f19061f30 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.launch.core/src/org/eclipse/tcf/te/launch/core/steps/AbstractLaunchStep.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.launch.core/src/org/eclipse/tcf/te/launch/core/steps/AbstractLaunchStep.java
@@ -1,9 +1,12 @@
-/*
- * AbstractLaunchStep.java
- * Created on 22.02.2012
+/*******************************************************************************
+ * Copyright (c) 2012 Wind River Systems, Inc. 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
*
- * Copyright 2012 Wind River Systems Inc. All rights reserved.
- */
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ *******************************************************************************/
package org.eclipse.tcf.te.launch.core.steps;
import org.eclipse.core.runtime.Assert;
@@ -16,14 +19,13 @@ import org.eclipse.tcf.te.runtime.stepper.extensions.AbstractStep;
import org.eclipse.tcf.te.runtime.stepper.interfaces.IStepContext;
/**
- * AbstractLaunchStep
- * @author tobias.schwarz@windriver.com
+ * Abstract launch step implementation.
*/
public abstract class AbstractLaunchStep extends AbstractStep {
/**
- * Rteurns the launch object for the given step context.
- *
+ * Returns the launch object for the given step context.
+ *
* @param context The step context.
* @return The launch or <code>null</code>.
*/
@@ -34,7 +36,7 @@ public abstract class AbstractLaunchStep extends AbstractStep {
/**
* Returns the active launch context model node that is currently used.
- *
+ *
* @param data The data giving object. Must not be <code>null</code>.
* @return The active launch context model node.
*/
@@ -47,7 +49,7 @@ public abstract class AbstractLaunchStep extends AbstractStep {
/**
* Returns the uses launch configuration.
- *
+ *
* @param context The step context.
* @return
*/
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.launch.core/src/org/eclipse/tcf/te/launch/core/steps/RemoveLaunchStep.java b/target_explorer/plugins/org.eclipse.tcf.te.launch.core/src/org/eclipse/tcf/te/launch/core/steps/RemoveLaunchStep.java
index eaedffede..978018fbb 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.launch.core/src/org/eclipse/tcf/te/launch/core/steps/RemoveLaunchStep.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.launch.core/src/org/eclipse/tcf/te/launch/core/steps/RemoveLaunchStep.java
@@ -1,9 +1,12 @@
-/*
- * RemoveLaunchStep.java
- * Created on 28.02.2012
+/*******************************************************************************
+ * Copyright (c) 2012 Wind River Systems, Inc. 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
*
- * Copyright 2012 Wind River Systems Inc. All rights reserved.
- */
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ *******************************************************************************/
package org.eclipse.tcf.te.launch.core.steps;
import org.eclipse.core.runtime.CoreException;
@@ -16,8 +19,7 @@ import org.eclipse.tcf.te.runtime.stepper.interfaces.IFullQualifiedId;
import org.eclipse.tcf.te.runtime.stepper.interfaces.IStepContext;
/**
- * RemoveLaunchStep
- * @author tobias.schwarz@windriver.com
+ * Remove launch step implementation.
*/
public class RemoveLaunchStep extends AbstractLaunchStep {

Back to the top