/* * 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; import java.util.List; /** * A tree node for a type expression involving type parameters. * * For example: *
 *   type < typeArguments >
 * 
* * @jls section 4.5.1 * * @author Peter von der Ahé * @author Jonathan Gibbons * @since 1.6 */ public interface ParameterizedTypeTree extends Tree { Tree getType(); List getTypeArguments(); }