Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_langtools
提交
1a1dfa10
D
dragonwell8_langtools
项目概览
openanolis
/
dragonwell8_langtools
通知
0
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_langtools
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
1a1dfa10
编写于
8月 06, 2013
作者:
L
lana
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
bb49cdfd
08a94956
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
203 addition
and
4 deletion
+203
-4
src/share/classes/com/sun/tools/javac/model/JavacAnnoConstructs.java
...lasses/com/sun/tools/javac/model/JavacAnnoConstructs.java
+4
-4
test/tools/javac/processing/model/element/8009367/TestQualifiedNameUsed.java
...ocessing/model/element/8009367/TestQualifiedNameUsed.java
+82
-0
test/tools/javac/processing/model/element/8009367/p/Q.java
test/tools/javac/processing/model/element/8009367/p/Q.java
+29
-0
test/tools/javac/processing/model/element/8009367/p/QQ.java
test/tools/javac/processing/model/element/8009367/p/QQ.java
+28
-0
test/tools/javac/processing/model/element/8009367/p/R.java
test/tools/javac/processing/model/element/8009367/p/R.java
+32
-0
test/tools/javac/processing/model/element/8009367/p/RR.java
test/tools/javac/processing/model/element/8009367/p/RR.java
+28
-0
未找到文件。
src/share/classes/com/sun/tools/javac/model/JavacAnnoConstructs.java
浏览文件 @
1a1dfa10
...
...
@@ -172,8 +172,8 @@ public class JavacAnnoConstructs {
}
// So we have a containing type
String
annoTypeName
=
annoType
.
get
Simple
Name
();
String
containerTypeName
=
containerType
.
get
Simple
Name
();
String
annoTypeName
=
annoType
.
getName
();
String
containerTypeName
=
containerType
.
getName
();
int
directIndex
=
-
1
,
containerIndex
=
-
1
;
Attribute
.
Compound
direct
=
null
,
container
=
null
;
// Find directly (explicit or implicit) present annotations
...
...
@@ -303,8 +303,8 @@ public class JavacAnnoConstructs {
}
// So we have a containing type
String
annoTypeName
=
annoType
.
get
Simple
Name
();
String
containerTypeName
=
containerType
.
get
Simple
Name
();
String
annoTypeName
=
annoType
.
getName
();
String
containerTypeName
=
containerType
.
getName
();
int
directIndex
=
-
1
,
containerIndex
=
-
1
;
Attribute
.
Compound
direct
=
null
,
container
=
null
;
// Find directly (explicit or implicit) present annotations
...
...
test/tools/javac/processing/model/element/8009367/TestQualifiedNameUsed.java
0 → 100644
浏览文件 @
1a1dfa10
/*
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8009367
* @summary Test that the correct kind of names (binary) are used when comparing
* Class and Symbol for repeatable Classes.
* @library /tools/javac/lib
* @build JavacTestingAbstractProcessor TestQualifiedNameUsed p.Q p.QQ p.R p.RR
* @run compile -processor TestQualifiedNameUsed -proc:only TestQualifiedNameUsed.java
*/
import
java.lang.annotation.Repeatable
;
import
java.util.Set
;
import
javax.annotation.processing.*
;
import
javax.lang.model.element.*
;
import
static
javax
.
lang
.
model
.
util
.
ElementFilter
.*;
import
com.sun.tools.javac.util.Assert
;
import
java.util.Arrays
;
public
class
TestQualifiedNameUsed
extends
JavacTestingAbstractProcessor
{
@Q
@p
.
Q
@p
.
R
.
Q
public
boolean
process
(
Set
<?
extends
TypeElement
>
annotations
,
RoundEnvironment
roundEnv
)
{
if
(!
roundEnv
.
processingOver
())
{
boolean
hasRun
=
false
;
for
(
Element
element
:
roundEnv
.
getRootElements
())
{
for
(
ExecutableElement
e
:
methodsIn
(
element
.
getEnclosedElements
()))
{
if
(
e
.
getSimpleName
().
contentEquals
(
"value"
))
continue
;
// don't want to look Q.value() in this file
hasRun
=
true
;
Q
[]
qs
=
e
.
getAnnotationsByType
(
Q
.
class
);
Assert
.
check
(
qs
.
length
==
1
);
Assert
.
check
(
qs
[
0
]
instanceof
Q
);
p
.
Q
[]
ps
=
e
.
getAnnotationsByType
(
p
.
Q
.
class
);
Assert
.
check
(
ps
.
length
==
1
);
Assert
.
check
(
ps
[
0
]
instanceof
p
.
Q
);
p
.
R
.
Q
[]
rs
=
e
.
getAnnotationsByType
(
p
.
R
.
Q
.
class
);
Assert
.
check
(
rs
.
length
==
1
);
Assert
.
check
(
rs
[
0
]
instanceof
p
.
R
.
Q
);
}
}
if
(!
hasRun
)
throw
new
RuntimeException
(
"No methods!"
);
}
return
true
;
}
}
@Repeatable
(
QQ
.
class
)
@interface
Q
{}
@interface
QQ
{
Q
[]
value
();
}
test/tools/javac/processing/model/element/8009367/p/Q.java
0 → 100644
浏览文件 @
1a1dfa10
/*
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package
p
;
import
java.lang.annotation.Repeatable
;
@Repeatable
(
QQ
.
class
)
public
@interface
Q
{}
test/tools/javac/processing/model/element/8009367/p/QQ.java
0 → 100644
浏览文件 @
1a1dfa10
/*
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package
p
;
public
@interface
QQ
{
Q
[]
value
();
}
test/tools/javac/processing/model/element/8009367/p/R.java
0 → 100644
浏览文件 @
1a1dfa10
/*
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package
p
;
import
java.lang.annotation.Repeatable
;
public
class
R
{
@Repeatable
(
RR
.
class
)
public
@interface
Q
{}
}
test/tools/javac/processing/model/element/8009367/p/RR.java
0 → 100644
浏览文件 @
1a1dfa10
/*
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package
p
;
public
@interface
RR
{
R
.
Q
[]
value
();
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录