Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
51c9f1f1
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
51c9f1f1
编写于
8月 23, 2009
作者:
A
alanb
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
a7b5a2ab
09ae3ed3
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
25 addition
and
0 deletion
+25
-0
src/share/classes/java/lang/EnumConstantNotPresentException.java
...re/classes/java/lang/EnumConstantNotPresentException.java
+4
-0
src/share/classes/java/lang/TypeNotPresentException.java
src/share/classes/java/lang/TypeNotPresentException.java
+4
-0
src/share/classes/java/lang/annotation/AnnotationFormatError.java
...e/classes/java/lang/annotation/AnnotationFormatError.java
+4
-0
src/share/classes/java/lang/annotation/AnnotationTypeMismatchException.java
...java/lang/annotation/AnnotationTypeMismatchException.java
+4
-0
src/share/classes/java/lang/annotation/IncompleteAnnotationException.java
...s/java/lang/annotation/IncompleteAnnotationException.java
+4
-0
src/share/classes/java/lang/reflect/AnnotatedElement.java
src/share/classes/java/lang/reflect/AnnotatedElement.java
+5
-0
未找到文件。
src/share/classes/java/lang/EnumConstantNotPresentException.java
浏览文件 @
51c9f1f1
...
...
@@ -28,8 +28,12 @@ package java.lang;
/**
* Thrown when an application tries to access an enum constant by name
* and the enum type contains no constant with the specified name.
* This exception can be thrown by the {@linkplain
* java.lang.reflect.AnnotatedElement API used to read annotations
* reflectively}.
*
* @author Josh Bloch
* @see java.lang.reflect.AnnotatedElement
* @since 1.5
*/
public
class
EnumConstantNotPresentException
extends
RuntimeException
{
...
...
src/share/classes/java/lang/TypeNotPresentException.java
浏览文件 @
51c9f1f1
...
...
@@ -35,8 +35,12 @@ package java.lang;
* <p>Note that this exception may be used when undefined type variables
* are accessed as well as when types (e.g., classes, interfaces or
* annotation types) are loaded.
* In particular, this exception can be thrown by the {@linkplain
* java.lang.reflect.AnnotatedElement API used to read annotations
* reflectively}.
*
* @author Josh Bloch
* @see java.lang.reflect.AnnotatedElement
* @since 1.5
*/
public
class
TypeNotPresentException
extends
RuntimeException
{
...
...
src/share/classes/java/lang/annotation/AnnotationFormatError.java
浏览文件 @
51c9f1f1
...
...
@@ -28,8 +28,12 @@ package java.lang.annotation;
/**
* Thrown when the annotation parser attempts to read an annotation
* from a class file and determines that the annotation is malformed.
* This error can be thrown by the {@linkplain
* java.lang.reflect.AnnotatedElement API used to read annotations
* reflectively}.
*
* @author Josh Bloch
* @see java.lang.reflect.AnnotatedElement
* @since 1.5
*/
public
class
AnnotationFormatError
extends
Error
{
...
...
src/share/classes/java/lang/annotation/AnnotationTypeMismatchException.java
浏览文件 @
51c9f1f1
...
...
@@ -30,8 +30,12 @@ import java.lang.reflect.Method;
* Thrown to indicate that a program has attempted to access an element of
* an annotation whose type has changed after the annotation was compiled
* (or serialized).
* This exception can be thrown by the {@linkplain
* java.lang.reflect.AnnotatedElement API used to read annotations
* reflectively}.
*
* @author Josh Bloch
* @see java.lang.reflect.AnnotatedElement
* @since 1.5
*/
public
class
AnnotationTypeMismatchException
extends
RuntimeException
{
...
...
src/share/classes/java/lang/annotation/IncompleteAnnotationException.java
浏览文件 @
51c9f1f1
...
...
@@ -30,8 +30,12 @@ package java.lang.annotation;
* an annotation type that was added to the annotation type definition after
* the annotation was compiled (or serialized). This exception will not be
* thrown if the new element has a default value.
* This exception can be thrown by the {@linkplain
* java.lang.reflect.AnnotatedElement API used to read annotations
* reflectively}.
*
* @author Josh Bloch
* @see java.lang.reflect.AnnotatedElement
* @since 1.5
*/
public
class
IncompleteAnnotationException
extends
RuntimeException
{
...
...
src/share/classes/java/lang/reflect/AnnotatedElement.java
浏览文件 @
51c9f1f1
...
...
@@ -50,6 +50,11 @@ import java.lang.annotation.Annotation;
* java.lang.annotation.AnnotationTypeMismatchException} or an
* {@link java.lang.annotation.IncompleteAnnotationException}.
*
* @see java.lang.EnumConstantNotPresentException
* @see java.lang.TypeNotPresentException
* @see java.lang.annotation.AnnotationFormatError
* @see java.lang.annotation.AnnotationTypeMismatchException
* @see java.lang.annotation.IncompleteAnnotationException
* @since 1.5
* @author Josh Bloch
*/
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录