From aecdbd0d1b61bbc1324d2801f57b7cd7a3ab60c0 Mon Sep 17 00:00:00 2001 From: mkoch Date: Mon, 18 Oct 2004 10:41:56 +0000 Subject: 2004-10-18 Michael Koch * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89207 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/lang/Package.java | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'libjava/java/lang/Package.java') diff --git a/libjava/java/lang/Package.java b/libjava/java/lang/Package.java index 3ccdbb1e642..89945cadd8a 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 + * @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 -- cgit v1.2.3