1 /* 2 * @(#)ExpressionTree.java 1.2 05/11/17 3 * 4 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 * 7 * Use and Distribution is subject to the Java Research License available 8 * at <http://www.sun.com/software/communitysource/jrl.html>. 9 */ 10 11 package com.sun.source.tree; 12 13 /** 14 * A tree node used as the base class for the different types of 15 * expressions. 16 * 17 * @see "The Java Language Specification, 3rd ed, chapter 15" 18 * 19 * @author Peter von der Ahé 20 * @author Jonathan Gibbons 21 * @since 1.6 22 */ 23 public interface ExpressionTree extends Tree {} 24