Package org.eclipse.wst.xml.xpath2.processor.internal.ast


org.eclipse.wst.xml.xpath2.processor.internal.ast
Class BinExpr



public class BinExpr
extends org.eclipse.wst.xml.xpath2.processor.internal.ast.Expr
Abstract class for a Binary operation.

Constructor Summary

BinExpr(org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNode l , org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNode r)

Method Summary

public org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNodeleft()
     Left xpath node.
public org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNoderight()
     Right xpath node.
public voidset_left(org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNode n)
     Set the left xpath node.
public voidset_right(org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNode n)
     Set the right xpath node.

Constructor Detail

BinExpr

public BinExpr(org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNode l , org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNode r)

Constructor for BinExpr.


Methods Detail

left

public org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNode left()

Left xpath node.

Returns

org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNode - Left node.


right

public org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNode right()

Right xpath node.

Returns

org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNode - Right node.


set_left

public void set_left(org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNode n)

Set the left xpath node.

Parameters

n - Left node.


set_right

public void set_right(org.eclipse.wst.xml.xpath2.processor.internal.ast.XPathNode n)

Set the right xpath node.

Parameters

n - Right node.