Package org.objectweb.medor.filter.api

Examples of org.objectweb.medor.filter.api.FieldOperand


     * @throws SpeedoException
     */
    private void replaceFieldsInExpression(Expression e, Map old2newElement)
            throws SpeedoException {
        if (e instanceof FieldOperand) {
            FieldOperand fo = (FieldOperand) e;
            Field old = fo.getField();
            Field neo = (Field) old2newElement.get(old);
            if (neo != null && old != neo) {
                ((FieldOperand) e).setField(neo);
            }
        } else if (e instanceof Operator) {
View Full Code Here

TOP

Related Classes of org.objectweb.medor.filter.api.FieldOperand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.