Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
b4897fbd
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看板
提交
b4897fbd
编写于
2月 24, 2010
作者:
D
darcy
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6929382: Various core classes in util and elsewhere are missing @param <T> tags
Reviewed-by: dholmes, martin
上级
3145b078
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
12 addition
and
2 deletion
+12
-2
src/share/classes/java/lang/Iterable.java
src/share/classes/java/lang/Iterable.java
+6
-2
src/share/classes/java/util/Collection.java
src/share/classes/java/util/Collection.java
+2
-0
src/share/classes/java/util/Iterator.java
src/share/classes/java/util/Iterator.java
+2
-0
src/share/classes/java/util/List.java
src/share/classes/java/util/List.java
+2
-0
未找到文件。
src/share/classes/java/lang/Iterable.java
浏览文件 @
b4897fbd
...
@@ -27,8 +27,12 @@ package java.lang;
...
@@ -27,8 +27,12 @@ package java.lang;
import
java.util.Iterator
;
import
java.util.Iterator
;
/** Implementing this interface allows an object to be the target of
/**
* Implementing this interface allows an object to be the target of
* the "foreach" statement.
* the "foreach" statement.
*
* @param <T> the type of elements returned by the iterator
*
* @since 1.5
* @since 1.5
*/
*/
public
interface
Iterable
<
T
>
{
public
interface
Iterable
<
T
>
{
...
...
src/share/classes/java/util/Collection.java
浏览文件 @
b4897fbd
...
@@ -103,6 +103,8 @@ package java.util;
...
@@ -103,6 +103,8 @@ package java.util;
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
* Java Collections Framework</a>.
*
*
* @param <E> the type of elements in this collection
*
* @author Josh Bloch
* @author Josh Bloch
* @author Neal Gafter
* @author Neal Gafter
* @see Set
* @see Set
...
...
src/share/classes/java/util/Iterator.java
浏览文件 @
b4897fbd
...
@@ -41,6 +41,8 @@ package java.util;
...
@@ -41,6 +41,8 @@ package java.util;
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
* Java Collections Framework</a>.
*
*
* @param <E> the type of elements returned by this iterator
*
* @author Josh Bloch
* @author Josh Bloch
* @see Collection
* @see Collection
* @see ListIterator
* @see ListIterator
...
...
src/share/classes/java/util/List.java
浏览文件 @
b4897fbd
...
@@ -89,6 +89,8 @@ package java.util;
...
@@ -89,6 +89,8 @@ package java.util;
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* <a href="{@docRoot}/../technotes/guides/collections/index.html">
* Java Collections Framework</a>.
* Java Collections Framework</a>.
*
*
* @param <E> the type of elements in this list
*
* @author Josh Bloch
* @author Josh Bloch
* @author Neal Gafter
* @author Neal Gafter
* @see Collection
* @see Collection
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录