1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Marc Khouzam 2015-03-20 11:21:14 -04:00
parent 70128c214a
commit c652e20d9b
5 changed files with 10 additions and 10 deletions

View file

@ -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<Map<String, Object>> attrDeltasList = getAttributesDeltas(oldAttrsList, newAttrsList);

View file

@ -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<V extends ICommandResult> {
* Takes the supplied command and coalesces it with this one.
* The result is a new third command which represent the two
* original commands.
* <br>Note: the result type associated with the resurned command may be
* <br>Note: the result type associated with the returned command may be
* different than the result type associated with either of the commands
* being coalesced.
*

View file

@ -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

View file

@ -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.
*

View file

@ -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) {