diff options
author | Michael Koch <konqueror@gmx.de> | 2004-10-18 10:41:56 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-10-18 10:41:56 +0000 |
commit | 2047d8e479efea09e4f812662fc38e57f9f37226 (patch) | |
tree | 13de505ee49b7bb4b843feeac949d8748d7360ff /libjava/java/lang/Package.java | |
parent | 36071b5cbeaf23f0ac98cd313ba7d29d016b5ca2 (diff) | |
download | gcc-2047d8e479efea09e4f812662fc38e57f9f37226.zip gcc-2047d8e479efea09e4f812662fc38e57f9f37226.tar.gz gcc-2047d8e479efea09e4f812662fc38e57f9f37226.tar.bz2 |
Math.java, [...]: Reworked import statements, HTML in javadocs and modifier orders.
2004-10-18 Michael Koch <konqueror@gmx.de>
* java/lang/Math.java,
java/lang/Package.java,
java/lang/Runtime.java,
java/lang/StrictMath.java,
java/lang/System.java,
java/lang/Thread.java,
java/lang/ThreadLocal.java,
java/lang/Void.java:
Reworked import statements, HTML in javadocs and modifier orders.
From-SVN: r89207
Diffstat (limited to 'libjava/java/lang/Package.java')
-rw-r--r-- | libjava/java/lang/Package.java | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/libjava/java/lang/Package.java b/libjava/java/lang/Package.java index 3ccdbb1..89945ca 100644 --- a/libjava/java/lang/Package.java +++ b/libjava/java/lang/Package.java @@ -41,6 +41,7 @@ import java.net.URL; import java.util.NoSuchElementException; import java.util.StringTokenizer; + /** * Everything you ever wanted to know about a package. This class makes it * possible to attach specification and implementation information to a @@ -63,7 +64,7 @@ import java.util.StringTokenizer; * then the other version, etc. (If a version has no minor, micro, etc numbers * then they are considered the be 0.) * - * @author Mark Wielaard <mark@klomp.org> + * @author Mark Wielaard (mark@klomp.org) * @see ClassLoader#definePackage(String, String, String, String, String, * String, String, URL) * @since 1.2 @@ -72,28 +73,28 @@ import java.util.StringTokenizer; public class Package { /** The name of the Package */ - final private String name; + private final String name; /** The name if the implementation */ - final private String implTitle; + private final String implTitle; /** The vendor that wrote this implementation */ - final private String implVendor; + private final String implVendor; /** The version of this implementation */ - final private String implVersion; + private final String implVersion; /** The name of the specification */ - final private String specTitle; + private final String specTitle; /** The name of the specification designer */ - final private String specVendor; + private final String specVendor; /** The version of this specification */ - final private String specVersion; + private final String specVersion; /** If sealed the origin of the package classes, otherwise null */ - final private URL sealed; + private final URL sealed; /** * A package local constructor for the Package class. All parameters except |