Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8f6517575350de61b020f863f856da1a1baa0baa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*******************************************************************************
 * Copyright (c) 2007, 2009 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
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.dsf.debug.ui.viewmodel.expression;

import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.IDebugElement;
import org.eclipse.debug.core.model.IValue;
import org.eclipse.debug.core.model.IWatchExpressionDelegate;
import org.eclipse.debug.core.model.IWatchExpressionListener;
import org.eclipse.debug.core.model.IWatchExpressionResult;

/**
 * 
 */
public class WatchExpressionDelegate implements IWatchExpressionDelegate {
    public void evaluateExpression(final String expression, IDebugElement context, IWatchExpressionListener listener) {
        listener.watchEvaluationFinished(new IWatchExpressionResult() {
            public String[] getErrorMessages() { return new String[0]; }
            public DebugException getException() { return null; }
            public String getExpressionText() { return expression; }
            public IValue getValue() { return null; }
            public boolean hasErrors() { return false; }
        });
    }
}

Back to the top