# HG changeset patch # User darcy # Date 1372361066 25200 # Node ID 5025d43d373155e2978d8b5d6b4af3bd8af75750 # Parent f9db68ff2cbbe4da88f62b2efc7272afe7da067d 8019315: Fix doclint issues in java.util.logging Reviewed-by: lancea diff -r f9db68ff2cbb -r 5025d43d3731 jdk/src/share/classes/java/util/logging/Handler.java --- a/jdk/src/share/classes/java/util/logging/Handler.java Thu Jun 27 15:07:56 2013 -0400 +++ b/jdk/src/share/classes/java/util/logging/Handler.java Thu Jun 27 12:24:26 2013 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2000, 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 @@ -209,6 +209,7 @@ /** * Retrieves the ErrorManager for this Handler. * + * @return the ErrorManager for this Handler * @exception SecurityException if a security manager exists and if * the caller does not have LoggingPermission("control"). */ diff -r f9db68ff2cbb -r 5025d43d3731 jdk/src/share/classes/java/util/logging/LogManager.java --- a/jdk/src/share/classes/java/util/logging/LogManager.java Thu Jun 27 15:07:56 2013 -0400 +++ b/jdk/src/share/classes/java/util/logging/LogManager.java Thu Jun 27 12:24:26 2013 -0700 @@ -257,7 +257,8 @@ } /** - * Return the global LogManager object. + * Returns the global LogManager object. + * @return the global LogManager object */ public static LogManager getLogManager() { if (manager != null) { diff -r f9db68ff2cbb -r 5025d43d3731 jdk/src/share/classes/java/util/logging/LogRecord.java --- a/jdk/src/share/classes/java/util/logging/LogRecord.java Thu Jun 27 15:07:56 2013 -0400 +++ b/jdk/src/share/classes/java/util/logging/LogRecord.java Thu Jun 27 12:24:26 2013 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2000, 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 @@ -211,6 +211,7 @@ * the message string before formatting it. The result may * be null if the message is not localizable, or if no suitable * ResourceBundle is available. + * @return the localization resource bundle */ public ResourceBundle getResourceBundle() { return resourceBundle; @@ -231,6 +232,7 @@ * This is the name for the ResourceBundle that should be * used to localize the message string before formatting it. * The result may be null if the message is not localizable. + * @return the localization resource bundle name */ public String getResourceBundleName() { return resourceBundleName; @@ -281,6 +283,7 @@ *
* Sequence numbers are normally assigned in the LogRecord constructor, * so it should not normally be necessary to use this method. + * @param seq the sequence number */ public void setSequenceNumber(long seq) { sequenceNumber = seq;