From ce97e13dedadf5635b96807626bc2d005b9022bc Mon Sep 17 00:00:00 2001 From: mkoch Date: Tue, 20 Apr 2004 14:45:10 +0000 Subject: 2004-04-20 Michael Koch * java/rmi/MarshalledObject.java, java/rmi/Naming.java, java/rmi/RemoteException.java, java/rmi/activation/ActivationException.java, java/rmi/server/ServerCloneException.java, java/security/AccessController.java, java/security/AlgorithmParameterGenerator.java, java/security/AlgorithmParameters.java, java/security/CodeSource.java, java/security/Identity.java, java/security/IdentityScope.java, java/security/KeyPairGenerator.java, java/security/KeyStore.java, java/security/Security.java, java/security/Signature.java, java/security/SignatureSpi.java, java/security/SignedObject.java, java/security/spec/DSAParameterSpec.java, java/security/spec/DSAPrivateKeySpec.java, java/security/spec/DSAPublicKeySpec.java, java/sql/Array.java, java/sql/DatabaseMetaData.java, java/sql/ResultSet.java, java/text/ChoiceFormat.java, java/text/CollationElementIterator.java, java/text/CollationKey.java, java/text/Collator.java, java/text/DateFormat.java, java/text/DateFormatSymbols.java, java/text/DecimalFormatSymbols.java, java/text/Format.java, java/text/ParsePosition.java, java/text/RuleBasedCollator.java, java/text/SimpleDateFormat.java, java/text/StringCharacterIterator.java, java/util/Collections.java, java/util/PropertyResourceBundle.java, java/util/ResourceBundle.java, java/util/StringTokenizer.java, java/util/jar/Attributes.java, java/util/logging/ConsoleHandler.java, java/util/logging/LogManager.java, java/util/logging/MemoryHandler.java, java/util/logging/SocketHandler.java, javax/naming/NamingException.java: Fixed javadoc, coding style and argument names all over. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80906 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/util/logging/ConsoleHandler.java | 2 +- libjava/java/util/logging/LogManager.java | 10 ++++------ libjava/java/util/logging/MemoryHandler.java | 11 +---------- libjava/java/util/logging/SocketHandler.java | 2 +- 4 files changed, 7 insertions(+), 18 deletions(-) (limited to 'libjava/java/util/logging') diff --git a/libjava/java/util/logging/ConsoleHandler.java b/libjava/java/util/logging/ConsoleHandler.java index dd519b682f4..6d79c1dbfca 100644 --- a/libjava/java/util/logging/ConsoleHandler.java +++ b/libjava/java/util/logging/ConsoleHandler.java @@ -67,7 +67,7 @@ package java.util.logging; * *
  • java.util.logging.ConsoleHandler.encoding - specifies * the name of the character encoding. Default value: - * the default platform encoding. + * the default platform encoding.
  • * * * diff --git a/libjava/java/util/logging/LogManager.java b/libjava/java/util/logging/LogManager.java index 36216bc408b..24757089410 100644 --- a/libjava/java/util/logging/LogManager.java +++ b/libjava/java/util/logging/LogManager.java @@ -67,13 +67,12 @@ import java.lang.ref.WeakReference; * java.util.logging.LogManager is initialized. * The configuration process includes the subsequent steps: * - *
      + *
        *
      • If the system property java.util.logging.manager * is set to the name of a subclass of * java.util.logging.LogManager, an instance of * that subclass is created and becomes the global LogManager. * Otherwise, a new instance of LogManager is created.
      • - * *
      • The LogManager constructor tries to create * a new instance of the class specified by the system * property java.util.logging.config.class. @@ -91,14 +90,13 @@ import java.lang.ref.WeakReference; * {@link #readConfiguration(java.io.InputStream)}. * The name and location of this file are specified by the system * property java.util.logging.config.file.
      • - * *
      • If the system property java.util.logging.config.file * is not set, however, the contents of the URL * "{gnu.classpath.home.url}/logging.properties" are passed to * {@link #readConfiguration(java.io.InputStream)}. * Here, "{gnu.classpath.home.url}" stands for the value of * the system property gnu.classpath.home.url.
      • - *
    + * * * @author Sascha Brawer (brawer@acm.org) */ @@ -259,10 +257,10 @@ public class LogManager * * @param logger the logger to be added. * - * @return trueif logger was added, + * @return trueif logger was added, * false otherwise. * - * @throws NullPointerException if name is + * @throws NullPointerException if name is * null. */ public synchronized boolean addLogger(Logger logger) diff --git a/libjava/java/util/logging/MemoryHandler.java b/libjava/java/util/logging/MemoryHandler.java index 825a6fa86d6..3c18b527d18 100644 --- a/libjava/java/util/logging/MemoryHandler.java +++ b/libjava/java/util/logging/MemoryHandler.java @@ -35,10 +35,7 @@ module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this -exception statement from your version. - -*/ - +exception statement from your version. */ package java.util.logging; @@ -53,28 +50,22 @@ package java.util.logging; * value, a default is taken without an exception being thrown. * *
      - * *
    • java.util.MemoryHandler.level - specifies * the initial severity level threshold. Default value: * Level.ALL.
    • - * *
    • java.util.MemoryHandler.filter - specifies * the name of a Filter class. Default value: No Filter.
    • - * *
    • java.util.MemoryHandler.size - specifies the * maximum number of log records that are kept in the circular * buffer. Default value: 1000.
    • - * *
    • java.util.MemoryHandler.push - specifies the * pushLevel. Default value: * Level.SEVERE.
    • - * *
    • java.util.MemoryHandler.target - specifies the * name of a subclass of {@link Handler} that will be used as the * target handler. There is no default value for this property; * if it is not set, the no-argument MemoryHandler constructor * will throw an exception.
    • - * *
    * * @author Sascha Brawer (brawer@acm.org) diff --git a/libjava/java/util/logging/SocketHandler.java b/libjava/java/util/logging/SocketHandler.java index d9939a0f780..d4fc6e603c1 100644 --- a/libjava/java/util/logging/SocketHandler.java +++ b/libjava/java/util/logging/SocketHandler.java @@ -68,7 +68,7 @@ package java.util.logging; * *
  • java.util.SocketHandler.encoding - specifies * the name of the character encoding. Default value: - * the default platform encoding. + * the default platform encoding.
  • * *
  • java.util.SocketHandler.host - specifies * the name of the host to which records are published. -- cgit v1.2.3