📄 executabledeclaration.java
字号:
/* * @(#)ExecutableDeclaration.java 1.3 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.mirror.declaration;import java.util.Collection;import com.sun.mirror.type.ReferenceType;/** * Represents a method or constructor of a class or interface. * * @author Joseph D. Darcy * @author Scott Seligman * @version 1.3 05/11/17 * @since 1.5 */public interface ExecutableDeclaration extends MemberDeclaration { /** * Returns <tt>true</tt> if this method or constructor accepts a variable * number of arguments. * * @return <tt>true</tt> if this method or constructor accepts a variable * number of arguments */ boolean isVarArgs(); /** * Returns the formal type parameters of this method or constructor. * They are returned in declaration order. * * @return the formal type parameters of this method or constructor, * or an empty collection if there are none */ Collection<TypeParameterDeclaration> getFormalTypeParameters(); /** * Returns the formal parameters of this method or constructor. * They are returned in declaration order. * * @return the formal parameters of this method or constructor, * or an empty collection if there are none */ Collection<ParameterDeclaration> getParameters(); /** * Returns the exceptions and other throwables listed in this * method or constructor's <tt>throws</tt> clause. * * @return the exceptions and other throwables listed in the * <tt>throws</tt> clause, or an empty collection if there are none */ Collection<ReferenceType> getThrownTypes();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -