src/share/classes/com/sun/source/tree/TypeParameterTree.java

changeset 815
d17f37522154
parent 798
4868a36f6fd8
child 972
694ff82ca68e
equal deleted inserted replaced
810:15484cb7e5ae 815:d17f37522154
1 /* 1 /*
2 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
45 * @since 1.6 45 * @since 1.6
46 */ 46 */
47 public interface TypeParameterTree extends Tree { 47 public interface TypeParameterTree extends Tree {
48 Name getName(); 48 Name getName();
49 List<? extends Tree> getBounds(); 49 List<? extends Tree> getBounds();
50 //308 List<? extends AnnotationTree> getAnnotations();
51 } 50 }

mercurial