org.hisrc.jscm.codemodel.statement.JSForVarStatement Maven / Gradle / Ivy
The newest version!
package org.hisrc.jscm.codemodel.statement;
import java.util.List;
import org.hisrc.jscm.codemodel.expression.JSExpression;
public interface JSForVarStatement extends JSIterationStatement,
JSVariableDeclaration {
public List getVariableDeclarations();
public JSExpression getTest();
public JSExpression getUpdate();
public JSForVarStatement test(JSExpression expression);
public JSForVarStatement update(JSExpression expression);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy