From aebd77f8508fc73ee39d9f98571afa0da59c6bd8 Mon Sep 17 00:00:00 2001 From: Patrick Chuong Date: Tue, 19 Apr 2011 14:21:30 +0000 Subject: [PATCH] Bug 343272 - Missing IModelDelta.COLLAPSE delta detail --- .../src/org/eclipse/cdt/dsf/ui/viewmodel/VMDelta.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/ui/viewmodel/VMDelta.java b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/ui/viewmodel/VMDelta.java index 862908a4eec..8f6434a3068 100644 --- a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/ui/viewmodel/VMDelta.java +++ b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/ui/viewmodel/VMDelta.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2005, 2009 IBM Corporation and others. + * Copyright (c) 2005, 2011 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 @@ -8,6 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation * Wind River Systems - adapted to use in DSF + * Patrick Chuong (Texas Instruments) *******************************************************************************/ package org.eclipse.cdt.dsf.ui.viewmodel; @@ -300,6 +301,9 @@ public class VMDelta extends ModelDelta { if ((flags & IModelDelta.EXPAND) > 0) { buf.append("EXPAND | "); //$NON-NLS-1$ } + if ((flags & IModelDelta.COLLAPSE) > 0) { + buf.append("COLLAPSE | "); //$NON-NLS-1$ + } if ((flags & IModelDelta.INSERTED) > 0) { buf.append("INSERTED | "); //$NON-NLS-1$ }