/* * 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 an array type. * * For example: * <pre> * <em>type</em> [] * </pre> * * @jls section 10.1 * * @author Peter von der Ahé * @author Jonathan Gibbons * @since 1.6 */ public interface ArrayTypeTree extends Tree { Tree getType(); }