diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/BreakpointsMediator.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/BreakpointsMediator.java index 586ca3a4fac..b4fe92acb6d 100644 --- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/BreakpointsMediator.java +++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/BreakpointsMediator.java @@ -69,7 +69,7 @@ public class BreakpointsMediator extends AbstractDsfService implements IBreakpoi /** * The attribute translator that this service will use to map the platform - * breakpiont attributes to the corresponding target attributes, and vice + * breakpoint attributes to the corresponding target attributes, and vice * versa. */ private IBreakpointAttributeTranslator fAttributeTranslator; @@ -582,7 +582,7 @@ public class BreakpointsMediator extends AbstractDsfService implements IBreakpoi } oldAttrsList.removeAll(commonAttrsList); - // Create a list of attribute changes. The lenghth of this list will + // Create a list of attribute changes. The length of this list will // always be max(oldAttrList.size(), newAttrsList.size()), padded with // null's if oldAttrsList was longer. final List> attrDeltasList = getAttributesDeltas(oldAttrsList, newAttrsList); diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/command/ICommand.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/command/ICommand.java index 3f9b1b77583..47a215ecc65 100644 --- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/command/ICommand.java +++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/command/ICommand.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2009 Wind River Systems and others. + * Copyright (c) 2007, 2015 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 @@ -17,7 +17,7 @@ import org.eclipse.cdt.dsf.datamodel.IDMContext; /** * Command interface for creating and manipulating GDB/MI commands - * for the DSF GDB reference implemenation. The command represents + * for the DSF GDB reference implementation. The command represents * the GDB/MI request which will be put on the wire to the GDB * backend. * @@ -29,7 +29,7 @@ public interface ICommand { * Takes the supplied command and coalesces it with this one. * The result is a new third command which represent the two * original commands. - *
Note: the result type associated with the resurned command may be + *
Note: the result type associated with the returned command may be * different than the result type associated with either of the commands * being coalesced. * diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/command/ICommandListener.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/command/ICommandListener.java index c7b309ea02f..5cd41e5af72 100644 --- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/command/ICommandListener.java +++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/debug/service/command/ICommandListener.java @@ -48,7 +48,7 @@ public interface ICommandListener { * Command Queue. This notification means that the command has * been removed from the queue and not sent to the backend. The * user has specifically removed it, perhaps because it has been - * combined with another. Or some state change has occured and + * combined with another. Or some state change has occurred and * there is no longer a need to get this particular set of data. * * @return None diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/internal/LoggingUtils.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/internal/LoggingUtils.java index e0da4f3958c..fdcc1da65dc 100644 --- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/internal/LoggingUtils.java +++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/internal/LoggingUtils.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009 Freescale Semiconductor, Inc. and others. + * Copyright (c) 2009, 2015 Freescale Semiconductor, 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 @@ -26,7 +26,7 @@ public class LoggingUtils { * form "classname@id", where 'classname' is the simple or package qualified * name of the object's class, and 'id' is the hash code. * - * Why not just use obj.toString()? That method is often overriden, and so + * Why not just use obj.toString()? That method is often overridden, and so * cannot be relied on for a representation that uniquely identifies the * object in the VM space. * diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/service/DsfSession.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/service/DsfSession.java index 55f95a16c12..a9dd82067e2 100644 --- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/service/DsfSession.java +++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/service/DsfSession.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2006, 2010 Wind River Systems and others. + * Copyright (c) 2006, 2015 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 @@ -585,7 +585,7 @@ public class DsfSession } /** - * Class to be instanciated only using startSession() + * Class to be instantiated only using startSession() */ @ThreadSafe private DsfSession(DsfExecutor executor, String ownerId, String id) {