/*
Copyright (C) 2005 Laurent Martelli <laurent@aopsys.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA */
package org.objectweb.jac.aspects.gui;
import java.util.List;
import org.objectweb.jac.core.rtti.ClassItem;
import org.objectweb.jac.core.rtti.ClassRepository;
import org.objectweb.jac.core.rtti.FieldItem;
import org.objectweb.jac.eval.ExprParser;
import org.objectweb.jac.eval.ExprScanner;
public class ExprWatcherParser extends ExprParser {
public ExprWatcherParser(ExprScanner scanner, ExprWatcher listener, Object thisPtr) {
super(scanner);
this.thisPtr = thisPtr;
this.listener = listener;
}
ExprWatcher listener;
public Object getField(Object o, String fieldName) {
ClassItem cl = cr.getClass(o);
FieldItem field = cl.getField(fieldName);
listener.watchField(o,field);
return field.getThroughAccessor(o);
}
public Object invokeMethod(Object o, String methodName, List args) {
return super.invokeMethod(o,methodName,args);
}
public Object getArrayElement(Object array, Object index) {
return super.getArrayElement(array,index);
}
public Object handleBraceExpansion(String str) {
return super.handleBraceExpansion(str);
}
}