Package net.sf.saxon.expr.flwor
Class ForMemberClausePush
- java.lang.Object
-
- net.sf.saxon.expr.flwor.TuplePush
-
- net.sf.saxon.expr.flwor.ForMemberClausePush
-
public class ForMemberClausePush extends TuplePush
This class implements the changes to the tuple stream effected by a "for" clause in a FLWOR expression
-
-
Field Summary
Fields Modifier and Type Field Description protected TuplePushdestinationprotected ForMemberClauseforMemberClause
-
Constructor Summary
Constructors Constructor Description ForMemberClausePush(Outputter outputter, TuplePush destination, ForMemberClause forClause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Close the tuple stream, indicating that no more tuples will be suppliedvoidprocessTuple(XPathContext context)Notify the availability of the next tuple.-
Methods inherited from class net.sf.saxon.expr.flwor.TuplePush
getOutputter
-
-
-
-
Field Detail
-
destination
protected TuplePush destination
-
forMemberClause
protected ForMemberClause forMemberClause
-
-
Constructor Detail
-
ForMemberClausePush
public ForMemberClausePush(Outputter outputter, TuplePush destination, ForMemberClause forClause)
-
-
Method Detail
-
processTuple
public void processTuple(XPathContext context) throws XPathException
Description copied from class:TuplePushNotify the availability of the next tuple. Before calling this method, the supplier of the tuples must set all the variables corresponding to the supplied tuple in the local stack frame associated with the context object- Specified by:
processTuplein classTuplePush- Parameters:
context- the dynamic evaluation context- Throws:
XPathException- if a dynamic error occurs
-
close
public void close() throws XPathExceptionDescription copied from class:TuplePushClose the tuple stream, indicating that no more tuples will be supplied- Overrides:
closein classTuplePush- Throws:
XPathException- if a dynamic error occurs
-
-