1 /*2 * Created on Sep 12, 20053 *4 * TODO To change the template for this generated file go to5 * Window - Preferences - Java - Code Style - Code Templates6 */7 package org.jruby.ast;8 9 /**10 * @author cnutter11 *12 * TODO To change the template for this generated type comment go to13 * Window - Preferences - Java - Code Style - Code Templates14 */15 public interface BinaryOperatorNode {16 /**17 * Gets the firstNode.18 * @return Returns a Node19 */20 public abstract Node getFirstNode();21 22 /**23 * Gets the secondNode.24 * @return Returns a Node25 */26 public abstract Node getSecondNode();27 }