提交 ef7b753c 编写于 作者: U uta

8005250: Downgrade normative references to ${java.home}/lib folder from Java client code.

Summary: Javadoc was changed in accordance with CCC-8005250 request.
Reviewed-by: alanb, amenkov
上级 851f6176
/* /*
* Copyright (c) 1997, 2008, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -56,11 +56,6 @@ import sun.awt.datatransfer.DataTransferer; ...@@ -56,11 +56,6 @@ import sun.awt.datatransfer.DataTransferer;
* by the data transfer subsystem to transfer data between Java and native * by the data transfer subsystem to transfer data between Java and native
* applications, and between Java applications in separate VMs. * applications, and between Java applications in separate VMs.
* <p> * <p>
* In the Sun reference implementation, the default SystemFlavorMap is
* initialized by the file <code>jre/lib/flavormap.properties</code> and the
* contents of the URL referenced by the AWT property
* <code>AWT.DnD.flavorMapFileURL</code>. See <code>flavormap.properties</code>
* for details.
* *
* @since 1.2 * @since 1.2
*/ */
...@@ -1213,7 +1208,7 @@ public final class SystemFlavorMap implements FlavorMap, FlavorTable { ...@@ -1213,7 +1208,7 @@ public final class SystemFlavorMap implements FlavorMap, FlavorTable {
* are equal according to <code>String.equals(Object)</code>.</li> * are equal according to <code>String.equals(Object)</code>.</li>
* </ul> * </ul>
* <p> * <p>
* Sun's reference implementation of this method returns the specified MIME * The reference implementation of this method returns the specified MIME
* type <code>String</code> prefixed with <code>JAVA_DATAFLAVOR:</code>. * type <code>String</code> prefixed with <code>JAVA_DATAFLAVOR:</code>.
* *
* @param mimeType the MIME type to encode * @param mimeType the MIME type to encode
...@@ -1241,7 +1236,7 @@ public final class SystemFlavorMap implements FlavorMap, FlavorTable { ...@@ -1241,7 +1236,7 @@ public final class SystemFlavorMap implements FlavorMap, FlavorTable {
* according to <code>String.equals(Object)</code>.</li> * according to <code>String.equals(Object)</code>.</li>
* </ul> * </ul>
* <p> * <p>
* Sun's reference implementation of this method returns the MIME type * The reference implementation of this method returns the MIME type
* <code>String</code> of the specified <code>DataFlavor</code> prefixed * <code>String</code> of the specified <code>DataFlavor</code> prefixed
* with <code>JAVA_DATAFLAVOR:</code>. * with <code>JAVA_DATAFLAVOR:</code>.
* *
......
/* /*
* Copyright (c) 1999, 2007, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -64,9 +64,9 @@ import java.util.ServiceConfigurationError; ...@@ -64,9 +64,9 @@ import java.util.ServiceConfigurationError;
* <code>ImageWriter</code>, <code>ImageTranscoder</code>, * <code>ImageWriter</code>, <code>ImageTranscoder</code>,
* <code>ImageInputStream</code>, and <code>ImageOutputStream</code>. * <code>ImageInputStream</code>, and <code>ImageOutputStream</code>.
* *
* <p> Service providers found on the system classpath (<i>e.g.</i>, * <p> Service providers found on the system classpath (typically
* the <code>jre/lib/ext</code> directory in Sun's implementation of * the <code>lib/ext</code> directory in the Java
* JDK) are automatically loaded as soon as this class is * installation directory) are automatically loaded as soon as this class is
* instantiated. * instantiated.
* *
* <p> When the <code>registerApplicationClasspathSpis</code> method * <p> When the <code>registerApplicationClasspathSpis</code> method
...@@ -226,8 +226,10 @@ public final class IIORegistry extends ServiceRegistry { ...@@ -226,8 +226,10 @@ public final class IIORegistry extends ServiceRegistry {
private void registerInstalledProviders() { private void registerInstalledProviders() {
/* /*
We need load installed providers from lib/ext We need to load installed providers from the
directory in the privileged mode in order to system classpath (typically the <code>lib/ext</code>
directory in in the Java installation directory)
in the privileged mode in order to
be able read corresponding jar files even if be able read corresponding jar files even if
file read capability is restricted (like the file read capability is restricted (like the
applet context case). applet context case).
......
/* /*
* Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -68,8 +68,10 @@ import com.sun.media.sound.MidiDeviceTransmitterEnvelope; ...@@ -68,8 +68,10 @@ import com.sun.media.sound.MidiDeviceTransmitterEnvelope;
* *
* <p>Properties can be used to specify default MIDI devices. * <p>Properties can be used to specify default MIDI devices.
* Both system properties and a properties file are considered. * Both system properties and a properties file are considered.
* The properties file is &quot;lib/sound.properties&quot; in the JRE * The <code>sound.properties</code> properties file is read from
* directory. If a property exists both as a system property and in the * an implementation-specific location (typically it is the <code>lib</code>
* directory in the Java installation directory).
* If a property exists both as a system property and in the
* properties file, the system property takes precedence. If none is * properties file, the system property takes precedence. If none is
* specified, a suitable default is chosen among the available devices. * specified, a suitable default is chosen among the available devices.
* The syntax of the properties file is specified in * The syntax of the properties file is specified in
......
/* /*
* Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -63,9 +63,10 @@ import com.sun.media.sound.JDK13Services; ...@@ -63,9 +63,10 @@ import com.sun.media.sound.JDK13Services;
* <p>Properties can be used to specify the default mixer * <p>Properties can be used to specify the default mixer
* for specific line types. * for specific line types.
* Both system properties and a properties file are considered. * Both system properties and a properties file are considered.
* In the Oracle reference implementation, the properties file is * The <code>sound.properties</code> properties file is read from
* &quot;lib/sound.properties&quot; in the JRE * an implementation-specific location (typically it is the <code>lib</code>
* directory. If a property exists both as a system property and in the * directory in the Java installation directory).
* If a property exists both as a system property and in the
* properties file, the system property takes precedence. If none is * properties file, the system property takes precedence. If none is
* specified, a suitable default is chosen among the available devices. * specified, a suitable default is chosen among the available devices.
* The syntax of the properties file is specified in * The syntax of the properties file is specified in
......
/* /*
* Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -105,8 +105,9 @@ import sun.awt.AWTAccessor; ...@@ -105,8 +105,9 @@ import sun.awt.AWTAccessor;
* exists and contains the key <code>swing.defaultlaf</code>, * exists and contains the key <code>swing.defaultlaf</code>,
* use its value as the default look and feel class name. The location * use its value as the default look and feel class name. The location
* that is checked for <code>swing.properties</code> may vary depending * that is checked for <code>swing.properties</code> may vary depending
* upon the implementation of the Java platform. In Sun's implementation * upon the implementation of the Java platform. Typically the
* the location is <code>${java.home}/lib/swing.properties</code>. * <code>swing.properties</code> file is located in the <code>lib</code>
* subdirectory of the Java installation directory.
* Refer to the release notes of the implementation being used for * Refer to the release notes of the implementation being used for
* further details. * further details.
* <li>Otherwise use the cross platform look and feel. * <li>Otherwise use the cross platform look and feel.
...@@ -256,7 +257,7 @@ public class UIManager implements Serializable ...@@ -256,7 +257,7 @@ public class UIManager implements Serializable
} }
/* Keys used for the properties file in <java.home>/lib/swing.properties. /* Keys used in the <code>swing.properties</code> properties file.
* See loadUserProperties(), initialize(). * See loadUserProperties(), initialize().
*/ */
...@@ -267,7 +268,7 @@ public class UIManager implements Serializable ...@@ -267,7 +268,7 @@ public class UIManager implements Serializable
private static final String disableMnemonicKey = "swing.disablenavaids"; private static final String disableMnemonicKey = "swing.disablenavaids";
/** /**
* Return a swing.properties file key for the attribute of specified * Return a <code>swing.properties</code> file key for the attribute of specified
* look and feel. The attr is either "name" or "class", a typical * look and feel. The attr is either "name" or "class", a typical
* key would be: "swing.installedlaf.windows.name" * key would be: "swing.installedlaf.windows.name"
*/ */
...@@ -276,9 +277,11 @@ public class UIManager implements Serializable ...@@ -276,9 +277,11 @@ public class UIManager implements Serializable
} }
/** /**
* The filename for swing.properties is a path like this (Unix version): * The location of the <code>swing.properties</code> property file is
* <java.home>/lib/swing.properties. This method returns a bogus * implementation-specific.
* filename if java.home isn't defined. * It is typically located in the <code>lib</code> subdirectory of the Java
* installation directory. This method returns a bogus filename
* if <code>java.home</code> isn't defined.
*/ */
private static String makeSwingPropertiesFilename() { private static String makeSwingPropertiesFilename() {
String sep = File.separator; String sep = File.separator;
...@@ -352,7 +355,7 @@ public class UIManager implements Serializable ...@@ -352,7 +355,7 @@ public class UIManager implements Serializable
/** /**
* The default value of <code>installedLAFS</code> is used when no * The default value of <code>installedLAFS</code> is used when no
* swing.properties * <code>swing.properties</code>
* file is available or if the file doesn't contain a "swing.installedlafs" * file is available or if the file doesn't contain a "swing.installedlafs"
* property. * property.
* *
...@@ -1271,7 +1274,8 @@ public class UIManager implements Serializable ...@@ -1271,7 +1274,8 @@ public class UIManager implements Serializable
/** /**
* If a swing.properties file exist and it has a swing.installedlafs property * If a <code>swing.properties</code> file exist and it has a
* <code>swing.installedlafs</code> property
* then initialize the <code>installedLAFs</code> field. * then initialize the <code>installedLAFs</code> field.
* *
* @see #getInstalledLookAndFeels * @see #getInstalledLookAndFeels
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册