You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
698 B
46 lines
698 B
/*
|
|
* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package javax.lang.model.element;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* A mixin interface for an element that has type parameters.
|
|
*
|
|
* @author Joseph D. Darcy
|
|
* @since 1.7
|
|
*/
|
|
public interface Parameterizable extends Element {
|
|
/**
|
|
* Returns the formal type parameters of the type element in
|
|
* declaration order.
|
|
*
|
|
* @return the formal type parameters, or an empty list
|
|
* if there are none
|
|
*/
|
|
List<? extends TypeParameterElement> getTypeParameters();
|
|
}
|