/* * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.source.tree; /** * A tree node for a 'while' loop statement. * * For example: * <pre> * while ( <em>condition</em> ) * <em>statement</em> * </pre> * * * @jls section 14.12 * * @author Peter von der Ahé * @author Jonathan Gibbons * @since 1.6 */ public interface WhileLoopTree extends StatementTree { ExpressionTree getCondition(); StatementTree getStatement(); }