KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jruby > ast > BinaryOperatorNode


1 /*
2  * Created on Sep 12, 2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.jruby.ast;
8
9 /**
10  * @author cnutter
11  *
12  * TODO To change the template for this generated type comment go to
13  * Window - Preferences - Java - Code Style - Code Templates
14  */

15 public interface BinaryOperatorNode {
16     /**
17      * Gets the firstNode.
18      * @return Returns a Node
19      */

20     public abstract Node getFirstNode();
21
22     /**
23      * Gets the secondNode.
24      * @return Returns a Node
25      */

26     public abstract Node getSecondNode();
27 }
Popular Tags