diff options
| author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-18 10:41:56 +0000 |
|---|---|---|
| committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-18 10:41:56 +0000 |
| commit | aecdbd0d1b61bbc1324d2801f57b7cd7a3ab60c0 (patch) | |
| tree | 13de505ee49b7bb4b843feeac949d8748d7360ff /libjava/java/lang/Package.java | |
| parent | 2e98f1147826aed0074bd0c2d781a53424e7a36f (diff) | |
| download | ppe42-gcc-aecdbd0d1b61bbc1324d2801f57b7cd7a3ab60c0.tar.gz ppe42-gcc-aecdbd0d1b61bbc1324d2801f57b7cd7a3ab60c0.zip | |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89207 138bc75d-0d04-0410-961f-82ee72b054a4
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 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 <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 |

