223N/A/*
553N/A * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
223N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
223N/A *
223N/A * This code is free software; you can redistribute it and/or modify it
223N/A * under the terms of the GNU General Public License version 2 only, as
553N/A * published by the Free Software Foundation. Oracle designates this
223N/A * particular file as subject to the "Classpath" exception as provided
553N/A * by Oracle in the LICENSE file that accompanied this code.
223N/A *
223N/A * This code is distributed in the hope that it will be useful, but WITHOUT
223N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
223N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
223N/A * version 2 for more details (a copy is included in the LICENSE file that
223N/A * accompanied this code).
223N/A *
223N/A * You should have received a copy of the GNU General Public License version
223N/A * 2 along with this work; if not, write to the Free Software Foundation,
223N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
223N/A *
553N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
553N/A * or visit www.oracle.com if you need additional information or have any
553N/A * questions.
223N/A */
223N/A
223N/Apackage javax.lang.model.element;
223N/A
223N/Aimport java.util.List;
223N/A
223N/A/**
223N/A * A mixin interface for an element that has type parameters.
223N/A *
223N/A * @author Joseph D. Darcy
223N/A * @since 1.7
223N/A */
223N/Apublic interface Parameterizable extends Element {
223N/A /**
223N/A * Returns the formal type parameters of the type element in
223N/A * declaration order.
223N/A *
223N/A * @return the formal type parameters, or an empty list
223N/A * if there are none
223N/A */
223N/A List<? extends TypeParameterElement> getTypeParameters();
223N/A}