1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-20 15:35:24 +02:00

Cosmetics

Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Marc Khouzam 2015-10-06 13:12:58 -04:00
parent 9aa72d4a44
commit ef8906cc1d
3 changed files with 8 additions and 8 deletions

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2008, 2013 Wind River Systems, Inc. and others. * Copyright (c) 2008, 2015 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -397,7 +397,7 @@ public abstract class AbstractContainerVMNode extends AbstractExecutionContextVM
if (refreshEvent.getTriggeringEvent() instanceof IContainerSuspendedDMEvent) { if (refreshEvent.getTriggeringEvent() instanceof IContainerSuspendedDMEvent) {
// For a full container suspended event, issue a single change when we get // For a full container suspended event, issue a single change when we get
// a FullStackRefreshEvent. This avoids refreshing all threads, even those // a FullStackRefreshEvent. This avoids refreshing all threads, even those
// there are not visible // that are not visible
// bug 386175 // bug 386175
IContainerSuspendedDMEvent containerTriggerEvent = IContainerSuspendedDMEvent containerTriggerEvent =
(IContainerSuspendedDMEvent)refreshEvent.getTriggeringEvent(); (IContainerSuspendedDMEvent)refreshEvent.getTriggeringEvent();

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2006, 2011 Wind River Systems and others. * Copyright (c) 2006, 2015 Wind River Systems and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -243,7 +243,7 @@ public abstract class AbstractThreadVMNode extends AbstractExecutionContextVMNod
} else if (e instanceof SteppingTimedOutEvent && } else if (e instanceof SteppingTimedOutEvent &&
((SteppingTimedOutEvent)e).getDMContext() instanceof IContainerDMContext) ((SteppingTimedOutEvent)e).getDMContext() instanceof IContainerDMContext)
{ {
// The timed out event occured on a container and not on a thread. Do not // The timed out event occurred on a container and not on a thread. Do not
// return a context for this event, which will force the view model to generate // return a context for this event, which will force the view model to generate
// a delta for all the threads. // a delta for all the threads.
rm.setStatus(new Status(IStatus.ERROR, DsfUIPlugin.PLUGIN_ID, IDsfStatusConstants.NOT_SUPPORTED, "", null)); //$NON-NLS-1$ rm.setStatus(new Status(IStatus.ERROR, DsfUIPlugin.PLUGIN_ID, IDsfStatusConstants.NOT_SUPPORTED, "", null)); //$NON-NLS-1$
@ -252,7 +252,7 @@ public abstract class AbstractThreadVMNode extends AbstractExecutionContextVMNod
} else if (e instanceof FullStackRefreshEvent && } else if (e instanceof FullStackRefreshEvent &&
((FullStackRefreshEvent)e).getDMContext() instanceof IContainerDMContext) ((FullStackRefreshEvent)e).getDMContext() instanceof IContainerDMContext)
{ {
// The step sequence end event occured on a container and not on a thread. Do not // The step sequence end event occurred on a container and not on a thread. Do not
// return a context for this event, which will force the view model to generate // return a context for this event, which will force the view model to generate
// a delta for all the threads. // a delta for all the threads.
rm.setStatus(new Status(IStatus.ERROR, DsfUIPlugin.PLUGIN_ID, IDsfStatusConstants.NOT_SUPPORTED, "", null)); //$NON-NLS-1$ rm.setStatus(new Status(IStatus.ERROR, DsfUIPlugin.PLUGIN_ID, IDsfStatusConstants.NOT_SUPPORTED, "", null)); //$NON-NLS-1$
@ -371,7 +371,7 @@ public abstract class AbstractThreadVMNode extends AbstractExecutionContextVMNod
// Also IContainerResumedDMEvent sub-classes IResumedDMEvent and // Also IContainerResumedDMEvent sub-classes IResumedDMEvent and
// IContainerSuspendedDMEvnet sub-classes ISuspendedEvent. // IContainerSuspendedDMEvnet sub-classes ISuspendedEvent.
// Because of this relationship, the thread VM node can be called // Because of this relationship, the thread VM node can be called
// with data-model evnets for the containers. This statement // with data-model events for the containers. This statement
// filters out those event. // filters out those event.
rm.done(); rm.done();
} else if(e instanceof IResumedDMEvent) { } else if(e instanceof IResumedDMEvent) {

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2008, 2010 Wind River Systems, Inc. and others. * Copyright (c) 2008, 2015 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -27,7 +27,7 @@ import org.eclipse.jface.viewers.TreePath;
/** /**
* An update strategy decorator specialized for delayed stack frame refresh. The * An update strategy decorator specialized for delayed stack frame refresh. The
* strategy flushes only the cached top stack frame in case of an normal {@link ISuspendedDMEvent}, * strategy flushes only the cached top stack frame in case of an normal {@link ISuspendedDMEvent},
* while in in case of a special {@link FullStackRefreshEvent} everything is invalidated. * while in case of a special {@link FullStackRefreshEvent} everything is invalidated.
* *
* <p> * <p>
* The underlying base update policy is considered for container contexts only. * The underlying base update policy is considered for container contexts only.