1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-30 21:55:31 +02:00

Remove ExpressionManager.

This commit is contained in:
Alain Magloire 2002-10-11 14:41:35 +00:00
parent 76c48037d8
commit a4401df722
2 changed files with 4 additions and 46 deletions

View file

@ -1,3 +1,7 @@
2002-10-11 Alain Magloire
cdi/ExpressionManager.java: Not needed, removed.
2002-10-10 Alain Magloire
The Eclipse/UI/Debug framewok is being very repetive

View file

@ -1,46 +0,0 @@
/*
* (c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core.cdi;
import org.eclipse.cdt.debug.core.cdi.CDIException;
import org.eclipse.cdt.debug.core.cdi.ICDIExpressionManager;
import org.eclipse.cdt.debug.core.cdi.model.ICDIExpression;
/**
*/
public class ExpressionManager extends SessionObject implements ICDIExpressionManager {
public ExpressionManager(CSession session) {
super(session);
}
/**
* @see org.eclipse.cdt.debug.core.cdi.ICDIExpressionManager#createExpression(String)
*/
public ICDIExpression createExpression(String name) throws CDIException {
return null;
}
/**
* @see org.eclipse.cdt.debug.core.cdi.ICDIExpressionManager#getExpressions()
*/
public ICDIExpression[] getExpressions() throws CDIException {
return new ICDIExpression[0];
}
/**
* @see org.eclipse.cdt.debug.core.cdi.ICDIExpressionManager#removeExpression(ICDIExpression)
*/
public void removeExpression(ICDIExpression expression) throws CDIException {
}
/**
* @see org.eclipse.cdt.debug.core.cdi.ICDIExpressionManager#removeExpressions(ICDIExpression[])
*/
public void removeExpressions(ICDIExpression[] expressions) throws CDIException {
}
}