提交 782d7169 编写于 作者: S Sam Brannen

Polish Javadoc for MethodMetadata

上级 71995a90
/* /*
* Copyright 2002-2015 the original author or authors. * Copyright 2002-2021 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -18,7 +18,7 @@ package org.springframework.core.type; ...@@ -18,7 +18,7 @@ package org.springframework.core.type;
/** /**
* Interface that defines abstract access to the annotations of a specific * Interface that defines abstract access to the annotations of a specific
* class, in a form that does not require that class to be loaded yet. * method, in a form that does not require that method's class to be loaded yet.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Mark Pollack * @author Mark Pollack
...@@ -32,42 +32,42 @@ package org.springframework.core.type; ...@@ -32,42 +32,42 @@ package org.springframework.core.type;
public interface MethodMetadata extends AnnotatedTypeMetadata { public interface MethodMetadata extends AnnotatedTypeMetadata {
/** /**
* Return the name of the method. * Get the name of the underlying method.
*/ */
String getMethodName(); String getMethodName();
/** /**
* Return the fully-qualified name of the class that declares this method. * Get the fully-qualified name of the class that declares the underlying method.
*/ */
String getDeclaringClassName(); String getDeclaringClassName();
/** /**
* Return the fully-qualified name of this method's declared return type. * Get the fully-qualified name of the underlying method's declared return type.
* @since 4.2 * @since 4.2
*/ */
String getReturnTypeName(); String getReturnTypeName();
/** /**
* Return whether the underlying method is effectively abstract: * Determine whether the underlying method is effectively abstract:
* i.e. marked as abstract on a class or declared as a regular, * i.e. marked as abstract in a class or declared as a regular,
* non-default method in an interface. * non-default method in an interface.
* @since 4.2 * @since 4.2
*/ */
boolean isAbstract(); boolean isAbstract();
/** /**
* Return whether the underlying method is declared as 'static'. * Determine whether the underlying method is declared as 'static'.
*/ */
boolean isStatic(); boolean isStatic();
/** /**
* Return whether the underlying method is marked as 'final'. * Determine whether the underlying method is marked as 'final'.
*/ */
boolean isFinal(); boolean isFinal();
/** /**
* Return whether the underlying method is overridable, * Determine whether the underlying method is overridable,
* i.e. not marked as static, final or private. * i.e. not marked as static, final, or private.
*/ */
boolean isOverridable(); boolean isOverridable();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册