blob: cac121e65d8148f86671fa5ca52fb2d70083b525 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2010 Andrea Bittau, University College London, 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:
* Andrea Bittau - initial API and implementation from the PsychoPath XPath 2.0
* Mukul Gandhi - bug 280798 - PsychoPath support for JDK 1.4
*******************************************************************************/
package org.eclipse.wst.xml.xpath2.processor.internal.ast;
import java.util.*;
/**
* Class for the For expression.
*/
public class ForExpr extends Expr {
private Collection _var_expr_pairs;
private Expr _return;
/**
* Constructor for ForExpr.
*
* @param varexp
* Expressions.
* @param ret
* Return expression.
*/
public ForExpr(Collection varexp, Expr ret) {
_var_expr_pairs = varexp;
_return = ret;
}
/**
* Support for Visitor interface.
*
* @return Result of Visitor operation.
*/
public Object accept(XPathVisitor v) {
return v.visit(this);
}
/**
* Support for Iterator interface.
*
* @return Result of Iterator operation.
*/
public Iterator iterator() {
return _var_expr_pairs.iterator();
}
/**
* Support for Expr interface.
*
* @return Result of Expr operation.
*/
public Expr expr() {
return _return;
}
/**
* Set Expression.
*
* @param e
* Expression.
*/
public void set_expr(Expr e) {
_return = e;
}
// used for normalization... basically just keep a "simple for"... no
// pairs... collection will always have 1 element
/**
* Normalization of expression pairs.
*/
public void truncate_pairs() {
boolean first = true;
for (Iterator i = _var_expr_pairs.iterator(); i.hasNext();) {
i.next();
if (!first)
i.remove();
first = false;
}
}
/**
* Support for Collection interface.
*
* @return Expression pairs.
*/
public Collection ve_pairs() {
return _var_expr_pairs;
}
}