Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_langtools
提交
44531ff7
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看板
提交
44531ff7
编写于
6月 10, 2010
作者:
J
jjg
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6960407: Potential rebranding issues in openjdk/langtools repository sources
Reviewed-by: darcy
上级
e999dd62
变更
17
隐藏空白更改
内联
并排
Showing
17 changed file
with
28 addition
and
29 deletion
+28
-29
make/Makefile
make/Makefile
+4
-4
make/Makefile-classic
make/Makefile-classic
+3
-3
src/share/classes/com/sun/source/tree/Tree.java
src/share/classes/com/sun/source/tree/Tree.java
+1
-1
src/share/classes/com/sun/source/util/JavacTask.java
src/share/classes/com/sun/source/util/JavacTask.java
+1
-1
src/share/classes/com/sun/source/util/TaskEvent.java
src/share/classes/com/sun/source/util/TaskEvent.java
+1
-1
src/share/classes/com/sun/source/util/TaskListener.java
src/share/classes/com/sun/source/util/TaskListener.java
+1
-1
src/share/classes/com/sun/tools/doclets/formats/html/package.html
...e/classes/com/sun/tools/doclets/formats/html/package.html
+1
-2
src/share/classes/com/sun/tools/javac/api/JavacTaskImpl.java
src/share/classes/com/sun/tools/javac/api/JavacTaskImpl.java
+1
-1
src/share/classes/com/sun/tools/javac/code/Flags.java
src/share/classes/com/sun/tools/javac/code/Flags.java
+1
-1
src/share/classes/com/sun/tools/javac/code/Lint.java
src/share/classes/com/sun/tools/javac/code/Lint.java
+1
-1
src/share/classes/com/sun/tools/javac/code/Symtab.java
src/share/classes/com/sun/tools/javac/code/Symtab.java
+1
-1
src/share/classes/com/sun/tools/javac/comp/Attr.java
src/share/classes/com/sun/tools/javac/comp/Attr.java
+1
-1
src/share/classes/com/sun/tools/javac/comp/Check.java
src/share/classes/com/sun/tools/javac/comp/Check.java
+2
-2
src/share/classes/com/sun/tools/javac/resources/compiler.properties
...classes/com/sun/tools/javac/resources/compiler.properties
+5
-5
src/share/classes/com/sun/tools/javadoc/resources/javadoc.properties
...lasses/com/sun/tools/javadoc/resources/javadoc.properties
+1
-1
src/share/classes/com/sun/tools/javadoc/resources/javadoc_zh_CN.properties
.../com/sun/tools/javadoc/resources/javadoc_zh_CN.properties
+1
-1
src/share/classes/javax/tools/JavaFileManager.java
src/share/classes/javax/tools/JavaFileManager.java
+2
-2
未找到文件。
make/Makefile
浏览文件 @
44531ff7
...
...
@@ -26,9 +26,9 @@
# Makefile for langtools: wrapper around Ant build.xml file
#
# On Solaris, the
'make' utility from Sun
will not work with these makefiles.
# This little rule is only understood by S
un'
s make, and is harmless
# when seen by the GNU make tool. If using S
un'
s make, this causes the
# On Solaris, the
standard 'make' utility
will not work with these makefiles.
# This little rule is only understood by S
olari
s make, and is harmless
# when seen by the GNU make tool. If using S
olari
s make, this causes the
# make command to fail.
#
SUN_MAKE_TEST
:
sh = @echo "ERROR: PLEASE USE GNU VERSION OF MAKE"; exit 33
...
...
@@ -202,7 +202,7 @@ $(ANT_TARGETS): $(OUTPUTDIR)/build/ant-diagnostics.log
#-------------------------------------------------------------------
#
# Targets for
Sun
's internal JPRT build system
# Targets for
Oracle
's internal JPRT build system
CD
=
cd
ZIP
=
zip
...
...
make/Makefile-classic
浏览文件 @
44531ff7
...
...
@@ -28,9 +28,9 @@
#
#
# On Solaris, the
'make' utility from Sun
will not work with these makefiles.
# This little rule is only understood by S
un'
s make, and is harmless
# when seen by the GNU make tool. If using S
un'
s make, this causes the
# On Solaris, the
standard 'make' utility
will not work with these makefiles.
# This little rule is only understood by S
olari
s make, and is harmless
# when seen by the GNU make tool. If using S
olari
s make, this causes the
# make command to fail.
#
SUN_MAKE_TEST:sh = @echo "ERROR: PLEASE USE GNU VERSION OF MAKE"; exit 33
...
...
src/share/classes/com/sun/source/tree/Tree.java
浏览文件 @
44531ff7
...
...
@@ -30,7 +30,7 @@ package com.sun.source.tree;
*
* <p><b>WARNING:</b> This interface and its sub-interfaces are
* subject to change as the Java™ programming language evolves.
* These interfaces are implemented by
Sun's
Java compiler (javac)
* These interfaces are implemented by
the JDK
Java compiler (javac)
* and should not be implemented either directly or indirectly by
* other applications.
*
...
...
src/share/classes/com/sun/source/util/JavacTask.java
浏览文件 @
44531ff7
...
...
@@ -36,7 +36,7 @@ import javax.tools.JavaCompiler.CompilationTask;
import
javax.tools.JavaFileObject
;
/**
* Provides access to functionality specific to the
Sun
Java Compiler, javac.
* Provides access to functionality specific to the
JDK
Java Compiler, javac.
*
* @author Peter von der Ahé
* @author Jonathan Gibbons
...
...
src/share/classes/com/sun/source/util/TaskEvent.java
浏览文件 @
44531ff7
...
...
@@ -30,7 +30,7 @@ import javax.lang.model.element.TypeElement;
import
javax.tools.JavaFileObject
;
/**
* Provides details about work that has been done by the
Sun
Java Compiler, javac.
* Provides details about work that has been done by the
JDK
Java Compiler, javac.
*
* @author Jonathan Gibbons
* @since 1.6
...
...
src/share/classes/com/sun/source/util/TaskListener.java
浏览文件 @
44531ff7
...
...
@@ -27,7 +27,7 @@ package com.sun.source.util;
/**
* Provides a listener to monitor the activity of the
Sun
Java Compiler, javac.
* Provides a listener to monitor the activity of the
JDK
Java Compiler, javac.
*
* @author Jonathan Gibbons
* @since 1.6
...
...
src/share/classes/com/sun/tools/doclets/formats/html/package.html
浏览文件 @
44531ff7
...
...
@@ -28,8 +28,7 @@
<title>
com.sun.tools.doclets.formats.html package
</title>
</head>
<body
bgcolor=
"white"
>
This is the default doclet provided by doclet provided by
Sun
<font
size=
"-2"
><sup>
TM
</sup></font>
that produces Javadoc's
This is the default doclet provided with JDK that produces Javadoc's
default HTML-formatted API output. For more documentation
on this doclet, please refer to the link below.
...
...
src/share/classes/com/sun/tools/javac/api/JavacTaskImpl.java
浏览文件 @
44531ff7
...
...
@@ -54,7 +54,7 @@ import com.sun.tools.javac.util.List;
import
com.sun.tools.javac.main.JavaCompiler
;
/**
* Provides access to functionality specific to the
Sun
Java Compiler, javac.
* Provides access to functionality specific to the
JDK
Java Compiler, javac.
*
* <p><b>This is NOT part of any supported API.
* If you write code that depends on this, you do so at your own
...
...
src/share/classes/com/sun/tools/javac/code/Flags.java
浏览文件 @
44531ff7
...
...
@@ -226,7 +226,7 @@ public class Flags {
public
static
final
long
HYPOTHETICAL
=
1L
<<
37
;
/**
* Flag that marks a
Sun
proprietary class.
* Flag that marks a
n internal
proprietary class.
*/
public
static
final
long
PROPRIETARY
=
1L
<<
38
;
...
...
src/share/classes/com/sun/tools/javac/code/Lint.java
浏览文件 @
44531ff7
...
...
@@ -196,7 +196,7 @@ public class Lint
RAW
(
"rawtypes"
),
/**
* Warn about
Sun
proprietary API that may be removed in a future release.
* Warn about proprietary API that may be removed in a future release.
*/
SUNAPI
(
"sunapi"
,
true
),
...
...
src/share/classes/com/sun/tools/javac/code/Symtab.java
浏览文件 @
44531ff7
...
...
@@ -469,7 +469,7 @@ public class Symtab {
synthesizeBoxTypeIfMissing
(
floatType
);
synthesizeBoxTypeIfMissing
(
voidType
);
// Enter a synthetic class that is used to mark
Sun
// Enter a synthetic class that is used to mark
internal
// proprietary classes in ct.sym. This class does not have a
// class file.
ClassType
proprietaryType
=
(
ClassType
)
enterClass
(
"sun.Proprietary+Annotation"
);
...
...
src/share/classes/com/sun/tools/javac/comp/Attr.java
浏览文件 @
44531ff7
...
...
@@ -166,7 +166,7 @@ public class Attr extends JCTree.Visitor {
boolean
useBeforeDeclarationWarning
;
/**
* Switch: allow lint infrastructure to control
Sun
proprietary
* Switch: allow lint infrastructure to control proprietary
* API warnings.
*/
boolean
enableSunApiLintControl
;
...
...
src/share/classes/com/sun/tools/javac/comp/Check.java
浏览文件 @
44531ff7
...
...
@@ -157,7 +157,7 @@ public class Check {
*/
private
MandatoryWarningHandler
unsafeVarargsHandler
;
/** A handler for messages about using
Sun
proprietary API.
/** A handler for messages about using proprietary API.
*/
private
MandatoryWarningHandler
sunApiHandler
;
...
...
@@ -198,7 +198,7 @@ public class Check {
unsafeVarargsHandler
.
report
(
pos
,
"varargs.non.reifiable.type"
,
elemType
);
}
/** Warn about using
Sun
proprietary API.
/** Warn about using proprietary API.
* @param pos Position to be used for error reporting.
* @param msg A string describing the problem.
*/
...
...
src/share/classes/com/sun/tools/javac/resources/compiler.properties
浏览文件 @
44531ff7
...
...
@@ -608,17 +608,17 @@ compiler.note.varargs.plural.additional=\
Some input files additionally declares unsafe vararg methods.
compiler.note.sunapi.filename
=
\
{0} uses
Sun
proprietary API that may be removed in a future release.
{0} uses
internal
proprietary API that may be removed in a future release.
compiler.note.sunapi.plural
=
\
Some input files use
Sun
proprietary API that may be removed in a future release.
Some input files use
internal
proprietary API that may be removed in a future release.
# The following string may appear after one of the above sunapi messages.
compiler.note.sunapi.recompile
=
\
Recompile with -Xlint:sunapi for details.
compiler.note.sunapi.filename.additional
=
\
{0} uses additional
Sun
proprietary API that may be removed in a future release.
{0} uses additional
internal
proprietary API that may be removed in a future release.
compiler.note.sunapi.plural.additional
=
\
Some input files additionally use
Sun
proprietary API that may be removed in a future release.
Some input files additionally use
internal
proprietary API that may be removed in a future release.
# Notes related to annotation processing
...
...
@@ -701,7 +701,7 @@ compiler.warn.has.been.deprecated=\
[deprecation] {0} in {1} has been deprecated
compiler.warn.sun.proprietary
=
\
{0} is
Sun
proprietary API and may be removed in a future release
{0} is
internal
proprietary API and may be removed in a future release
compiler.warn.illegal.char.for.encoding
=
\
unmappable character for encoding {0}
...
...
src/share/classes/com/sun/tools/javadoc/resources/javadoc.properties
浏览文件 @
44531ff7
...
...
@@ -65,7 +65,7 @@ main.no_source_files_for_package=No source files for package {0}
main.fatal.error
=
fatal error
main.fatal.exception
=
fatal exception
main.out.of.memory
=
java.lang.OutOfMemoryError: Please increase memory.
\n\
For example, on the
Sun
Classic or HotSpot VMs, add the option -J-Xmx
\n\
For example, on the
JDK
Classic or HotSpot VMs, add the option -J-Xmx
\n\
such as -J-Xmx32m.
main.done_in
=
[done in {0} ms]
main.doclet_method_must_be_static
=
In doclet class {0}, method {1} must be static.
...
...
src/share/classes/com/sun/tools/javadoc/resources/javadoc_zh_CN.properties
浏览文件 @
44531ff7
...
...
@@ -65,7 +65,7 @@ main.no_source_files_for_package=\u6ca1\u6709\u8f6f\u4ef6\u5305 {0} \u7684\u6e90
main.fatal.error
=
\u
81f4
\u
547d
\u9519\u
8bef
main.fatal.exception
=
\u
81f4
\u
547d
\u
5f02
\u
5e38
main.out.of.memory
=
java.lang.OutOfMemoryError
\u
ff1a
\u
8bf7
\u
589e
\u
52a0
\u5185\u
5b58
\u3002\n\
\u
4f8b
\u5982\u
ff0c
\u
5bf9
\u
4e8e
Sun
Classic
\u6216
HotSpot VM
\u
ff0c
\u
8bf7
\u
6dfb
\u
52a0
\u9009\u9879
-J-Xmx
\u
ff0c
\n\
\u
4f8b
\u5982\u
ff0c
\u
5bf9
\u
4e8e
JDK
Classic
\u6216
HotSpot VM
\u
ff0c
\u
8bf7
\u
6dfb
\u
52a0
\u9009\u9879
-J-Xmx
\u
ff0c
\n\
\u5982
-J-Xmx32m
\u3002
main.done_in
=
[
\u5728
{0}
\u
6beb
\u
79d2
\u5185\u
5b8c
\u6210
]
main.doclet_method_must_be_static
=
\u5728
doclet
\u
7c7b {0}
\u
4e2d
\u
ff0c
\u
65b9
\u
6cd5 {1}
\u
5fc5
\u
987b
\u
4e3a
\u9759\u6001\u3002
...
...
src/share/classes/javax/tools/JavaFileManager.java
浏览文件 @
44531ff7
...
...
@@ -256,7 +256,7 @@ public interface JavaFileManager extends Closeable, Flushable, OptionChecker {
*
* <p>Optionally, this file manager might consider the sibling as
* a hint for where to place the output. The exact semantics of
* this hint is unspecified.
Sun's
compiler, javac, for
* this hint is unspecified.
The JDK
compiler, javac, for
* example, will place class files in the same directories as
* originating source files unless a class file output directory
* is provided. To facilitate this behavior, javac might provide
...
...
@@ -338,7 +338,7 @@ public interface JavaFileManager extends Closeable, Flushable, OptionChecker {
*
* <p>Optionally, this file manager might consider the sibling as
* a hint for where to place the output. The exact semantics of
* this hint is unspecified.
Sun's
compiler, javac, for
* this hint is unspecified.
The JDK
compiler, javac, for
* example, will place class files in the same directories as
* originating source files unless a class file output directory
* is provided. To facilitate this behavior, javac might provide
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录