Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
365c52c6
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看板
提交
365c52c6
编写于
8月 06, 2013
作者:
D
darcy
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8022453: Fix doclint issues in javax.accessibility
Reviewed-by: prr
上级
07c71753
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
26 addition
and
12 deletion
+26
-12
src/share/classes/javax/accessibility/Accessible.java
src/share/classes/javax/accessibility/Accessible.java
+2
-1
src/share/classes/javax/accessibility/AccessibleBundle.java
src/share/classes/javax/accessibility/AccessibleBundle.java
+4
-1
src/share/classes/javax/accessibility/AccessibleExtendedTable.java
.../classes/javax/accessibility/AccessibleExtendedTable.java
+2
-2
src/share/classes/javax/accessibility/AccessibleRelationSet.java
...re/classes/javax/accessibility/AccessibleRelationSet.java
+2
-1
src/share/classes/javax/accessibility/AccessibleTable.java
src/share/classes/javax/accessibility/AccessibleTable.java
+5
-1
src/share/classes/javax/accessibility/AccessibleTableModelChange.java
...asses/javax/accessibility/AccessibleTableModelChange.java
+7
-3
src/share/classes/javax/accessibility/AccessibleTextSequence.java
...e/classes/javax/accessibility/AccessibleTextSequence.java
+2
-2
src/share/classes/javax/accessibility/AccessibleValue.java
src/share/classes/javax/accessibility/AccessibleValue.java
+2
-1
未找到文件。
src/share/classes/javax/accessibility/Accessible.java
浏览文件 @
365c52c6
/*
* Copyright (c) 1997,
1999
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997,
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
...
...
@@ -45,6 +45,7 @@ public interface Accessible {
* of an object that implements Accessible, and that subclass
* is not Accessible, the developer should override the
* getAccessibleContext method to return null.
* @return the AccessibleContext associated with this object
*/
public
AccessibleContext
getAccessibleContext
();
}
src/share/classes/javax/accessibility/AccessibleBundle.java
浏览文件 @
365c52c6
/*
* Copyright (c) 1997, 20
02
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 20
13
, 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
...
...
@@ -53,6 +53,9 @@ public abstract class AccessibleBundle {
private
final
String
defaultResourceBundleName
=
"com.sun.accessibility.internal.resources.accessibility"
;
/**
* Construct an {@code AccessibleBundle}.
*/
public
AccessibleBundle
()
{
}
...
...
src/share/classes/javax/accessibility/AccessibleExtendedTable.java
浏览文件 @
365c52c6
/*
* Copyright (c) 2001, 20
06
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2001, 20
13
, 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
...
...
@@ -60,7 +60,7 @@ public interface AccessibleExtendedTable extends AccessibleTable {
*/
public
int
getAccessibleColumn
(
int
index
);
/
*
/*
*
* Returns the index at a row and column in the table.
*
* @param r zero-based row of the table
...
...
src/share/classes/javax/accessibility/AccessibleRelationSet.java
浏览文件 @
365c52c6
/*
* Copyright (c) 1999, 20
06
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1999, 20
13
, 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
...
...
@@ -163,6 +163,7 @@ public class AccessibleRelationSet {
/**
* Returns the number of relations in the relation set.
* @return the number of relations in the relation set
*/
public
int
size
()
{
if
(
relations
==
null
)
{
...
...
src/share/classes/javax/accessibility/AccessibleTable.java
浏览文件 @
365c52c6
/*
* Copyright (c) 1999, 20
06
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1999, 20
13
, 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
...
...
@@ -90,6 +90,8 @@ public interface AccessibleTable {
* Returns the number of rows occupied by the Accessible at
* a specified row and column in the table.
*
* @param r zero-based row of the table
* @param c zero-based column of the table
* @return the number of rows occupied by the Accessible at a
* given specified (row, column)
*/
...
...
@@ -99,6 +101,8 @@ public interface AccessibleTable {
* Returns the number of columns occupied by the Accessible at
* a specified row and column in the table.
*
* @param r zero-based row of the table
* @param c zero-based column of the table
* @return the number of columns occupied by the Accessible at a
* given specified row and column
*/
...
...
src/share/classes/javax/accessibility/AccessibleTableModelChange.java
浏览文件 @
365c52c6
/*
* Copyright (c) 1999, 20
06
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1999, 20
13
, 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
...
...
@@ -71,8 +71,8 @@ public interface AccessibleTableModelChange {
public
static
final
int
DELETE
=
-
1
;
/**
* Returns the type of event
*
* Returns the type of event
.
*
@return the type of event
* @see #INSERT
* @see #UPDATE
* @see #DELETE
...
...
@@ -81,21 +81,25 @@ public interface AccessibleTableModelChange {
/**
* Returns the first row that changed.
* @return the first row that changed
*/
public
int
getFirstRow
();
/**
* Returns the last row that changed.
* @return the last row that changed
*/
public
int
getLastRow
();
/**
* Returns the first column that changed.
* @return the first column that changed
*/
public
int
getFirstColumn
();
/**
* Returns the last column that changed.
* @return the last column that changed
*/
public
int
getLastColumn
();
}
src/share/classes/javax/accessibility/AccessibleTextSequence.java
浏览文件 @
365c52c6
/*
* Copyright (c) 2003, 20
05
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2003, 20
13
, 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
...
...
@@ -49,7 +49,7 @@ package javax.accessibility;
*/
public
class
AccessibleTextSequence
{
/* The start index of the text sequence */
/*
*
The start index of the text sequence */
public
int
startIndex
;
/** The end index of the text sequence */
...
...
src/share/classes/javax/accessibility/AccessibleValue.java
浏览文件 @
365c52c6
/*
* Copyright (c) 1997,
1999
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997,
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
...
...
@@ -60,6 +60,7 @@ public interface AccessibleValue {
/**
* Set the value of this object as a Number.
*
* @param n the number to use for the value
* @return True if the value was set; else False
* @see #getCurrentAccessibleValue
*/
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录