Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 67735 invoked from network); 9 Dec 2008 15:04:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Dec 2008 15:04:44 -0000 Received: (qmail 47010 invoked by uid 500); 9 Dec 2008 15:04:57 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 46987 invoked by uid 500); 9 Dec 2008 15:04:57 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 46978 invoked by uid 99); 9 Dec 2008 15:04:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Dec 2008 07:04:57 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Dec 2008 15:03:32 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 395AB2388A1E; Tue, 9 Dec 2008 07:04:00 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r724734 [7/46] - in /harmony/standard/site: docs/externals/kernel_doc/ docs/externals/kernel_doc/html/ docs/externals/vm_doc/ docs/externals/vm_doc/html/ docs/subcomponents/classlibrary/ xdocs/subcomponents/classlibrary/ Date: Tue, 09 Dec 2008 15:03:51 -0000 To: commits@harmony.apache.org From: tellison@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081209150400.395AB2388A1E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Propchange: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Class_3_01T_01_4.html ------------------------------------------------------------------------------ svn:eol-style = native Added: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Compiler-members.html URL: http://svn.apache.org/viewvc/harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Compiler-members.html?rev=724734&view=auto ============================================================================== --- harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Compiler-members.html (added) +++ harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Compiler-members.html Tue Dec 9 07:03:45 2008 @@ -0,0 +1,37 @@ + + +Harmony Kernel: Member List + + + + + + +

java.lang.Compiler Member List

This is the complete list of members for java.lang.Compiler, including all inherited members.

+ + + + + + +
command(Object cmd)java.lang.Compiler [static]
compileClass(Class<?> classToCompile)java.lang.Compiler [static]
compileClasses(String nameRoot)java.lang.Compiler [static]
Compiler()java.lang.Compiler [private]
disable()java.lang.Compiler [static]
enable()java.lang.Compiler [static]


+
+ +

Genereated on Tue Dec 9 14:09:47 2008 by Doxygen.

+

(c) Copyright 2005, 2008 The Apache Software Foundation or its licensors, as applicable.

+
+
+ + Propchange: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Compiler-members.html ------------------------------------------------------------------------------ svn:eol-style = native Added: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Compiler.html URL: http://svn.apache.org/viewvc/harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Compiler.html?rev=724734&view=auto ============================================================================== --- harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Compiler.html (added) +++ harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Compiler.html Tue Dec 9 07:03:45 2008 @@ -0,0 +1,216 @@ + + +Harmony Kernel: java.lang.Compiler Class Reference + + + + + + + +

java.lang.Compiler Class Reference

+

+List of all members.


Detailed Description

+This class must be implemented by the VM vendor. +

+This class is a placeholder for environments which explicitly manage the action of a "Just In Time" compiler.

+

See also:
Cloneable
+ + + + + + + + + + + + + + + + + + + + + + +

Static Public Member Functions

static Object command (Object cmd)
 Low level interface to the JIT compiler.
static boolean compileClass (Class<?> classToCompile)
 Compiles the class using the JIT compiler.
static boolean compileClasses (String nameRoot)
 Compiles all classes whose name matches the argument using the JIT compiler.
static void disable ()
 Disable the JIT compiler.
static void enable ()
 Disable the JIT compiler.

Private Member Functions

 Compiler ()
 Prevent this class from being instantiated.
+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + + +
java.lang.Compiler.Compiler (  )  [private]
+
+
+ +

+Prevent this class from being instantiated. +

+ +

+

+


Member Function Documentation

+ +
+
+ + + + + + + + + +
static Object java.lang.Compiler.command (Object  cmd  )  [static]
+
+
+ +

+Low level interface to the JIT compiler. +

+Can return any object, or null if no JIT compiler is available.

+

Returns:
Object result of executing command
+
Parameters:
+ + +
cmd Object a command for the JIT compiler
+
+ +
+

+ +

+
+ + + + + + + + + +
static boolean java.lang.Compiler.compileClass (Class<?>  classToCompile  )  [static]
+
+
+ +

+Compiles the class using the JIT compiler. +

+Answers true if the compilation was successful, or false if it failed or there was no JIT compiler available.

+

Returns:
boolean indicating compilation success
+
Parameters:
+ + +
classToCompile java.lang.Class the class to JIT compile
+
+ +
+

+ +

+
+ + + + + + + + + +
static boolean java.lang.Compiler.compileClasses (String  nameRoot  )  [static]
+
+
+ +

+Compiles all classes whose name matches the argument using the JIT compiler. +

+Answers true if the compilation was successful, or false if it failed or there was no JIT compiler available.

+

Returns:
boolean indicating compilation success
+
Parameters:
+ + +
nameRoot String the string to match against class names
+
+ +
+

+ +

+
+ + + + + + + + +
static void java.lang.Compiler.disable (  )  [static]
+
+
+ +

+Disable the JIT compiler. +

+ +

+

+ +

+
+ + + + + + + + +
static void java.lang.Compiler.enable (  )  [static]
+
+
+ +

+Disable the JIT compiler. +

+ +

+

+


The documentation for this class was generated from the following file:
    +
  • java/lang/Compiler.java
+
+
+ +

Genereated on Tue Dec 9 14:09:47 2008 by Doxygen.

+

(c) Copyright 2005, 2008 The Apache Software Foundation or its licensors, as applicable.

+
+
+ + Propchange: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Compiler.html ------------------------------------------------------------------------------ svn:eol-style = native Added: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Object-members.html URL: http://svn.apache.org/viewvc/harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Object-members.html?rev=724734&view=auto ============================================================================== --- harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Object-members.html (added) +++ harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Object-members.html Tue Dec 9 07:03:45 2008 @@ -0,0 +1,43 @@ + + +Harmony Kernel: Member List + + + + + + +

java.lang.Object Member List

This is the complete list of members for java.lang.Object, including all inherited members.

+ + + + + + + + + + + + +
clone()java.lang.Object [protected]
equals(Object o)java.lang.Object
finalize()java.lang.Object [protected]
getClass()java.lang.Object
hashCode()java.lang.Object
notify()java.lang.Object
notifyAll()java.lang.Object
Object()java.lang.Object
toString()java.lang.Object
wait()java.lang.Object
wait(long time)java.lang.Object
wait(long time, int frac)java.lang.Object


+
+ +

Genereated on Tue Dec 9 14:09:47 2008 by Doxygen.

+

(c) Copyright 2005, 2008 The Apache Software Foundation or its licensors, as applicable.

+
+
+ + Propchange: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Object-members.html ------------------------------------------------------------------------------ svn:eol-style = native Added: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Object.html URL: http://svn.apache.org/viewvc/harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Object.html?rev=724734&view=auto ============================================================================== --- harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Object.html (added) +++ harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Object.html Tue Dec 9 07:03:45 2008 @@ -0,0 +1,433 @@ + + +Harmony Kernel: java.lang.Object Class Reference + + + + + + + +

java.lang.Object Class Reference

+

+List of all members.


Detailed Description

+This class must be implemented by the vm vendor. +

+Object is the root of the java class hierarchy. All non-base types respond to the messages defined in this class. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Member Functions

 Object ()
 Constructs a new instance of this class.
boolean equals (Object o)
 Compares the argument to the receiver, and answers true if they represent the same object using a class specific comparison.
final Class<?extends ObjectgetClass ()
 Answers the unique instance of java.lang.Class which represents the class of the receiver.
int hashCode ()
 Answers an integer hash code for the receiver.
final void notify ()
 Causes one thread which is wait ing on the receiver to be made ready to run.
final void notifyAll ()
 Causes all threads which are wait ing on the receiver to be made ready to run.
String toString ()
 Answers a string containing a concise, human-readable description of the receiver.
final void wait () throws InterruptedException
 Causes the thread which sent this message to be made not ready to run pending some change in the receiver (as indicated by notify or notifyAll).
final void wait (long time) throws InterruptedException
 Causes the thread which sent this message to be made not ready to run either pending some change in the receiver (as indicated by notify or notifyAll) or the expiration of the timeout.
final void wait (long time, int frac) throws InterruptedException
 Causes the thread which sent this message to be made not ready to run either pending some change in the receiver (as indicated by notify or notifyAll) or the expiration of the timeout.

Protected Member Functions

Object clone () throws CloneNotSupportedException
 Answers a new instance of the same class as the receiver, whose slots have been filled in with the values in the slots of the receiver.
void finalize () throws Throwable
 Called by the virtual machine when there are no longer any (non-weak) references to the receiver.
+


Constructor & Destructor Documentation

+ +
+
+ + + + + + + + +
java.lang.Object.Object (  ) 
+
+
+ +

+Constructs a new instance of this class. +

+ +

+

+


Member Function Documentation

+ +
+
+ + + + + + + + +
Object java.lang.Object.clone (  )  throws CloneNotSupportedException [protected]
+
+
+ +

+Answers a new instance of the same class as the receiver, whose slots have been filled in with the values in the slots of the receiver. +

+Classes which wish to support cloning must specify that they implement the Cloneable interface, since the implementation checks for this.

+

Returns:
Object a shallow copy of this object.
+
Exceptions:
+ + +
CloneNotSupportedException if the receiver's class does not implement the interface Cloneable.
+
+ +
+

+ +

+
+ + + + + + + + + +
boolean java.lang.Object.equals (Object  o  ) 
+
+
+ +

+Compares the argument to the receiver, and answers true if they represent the same object using a class specific comparison. +

+The implementation in Object answers true only if the argument is the exact same object as the receiver (==).

+

Parameters:
+ + +
o Object the object to compare with this object.
+
+
Returns:
boolean true if the object is the same as this object false if it is different from this object.
+
See also:
hashCode
+ +
+

+ +

+
+ + + + + + + + +
void java.lang.Object.finalize (  )  throws Throwable [protected]
+
+
+ +

+Called by the virtual machine when there are no longer any (non-weak) references to the receiver. +

+Subclasses can use this facility to guarantee that any associated resources are cleaned up before the receiver is garbage collected. Uncaught exceptions which are thrown during the running of the method cause it to terminate immediately, but are otherwise ignored.

+Note: The virtual machine assumes that the implementation in class Object is empty.

+

Exceptions:
+ + +
Throwable The virtual machine ignores any exceptions which are thrown during finalization.
+
+ +
+

+ +

+
+ + + + + + + + +
final Class<? extends Object> java.lang.Object.getClass (  ) 
+
+
+ +

+Answers the unique instance of java.lang.Class which represents the class of the receiver. +

+

Returns:
Class the receiver's Class
+ +
+

+ +

+
+ + + + + + + + +
int java.lang.Object.hashCode (  ) 
+
+
+ +

+Answers an integer hash code for the receiver. +

+Any two objects which answer true when passed to .equals must answer the same value for this method.

+

Returns:
int the receiver's hash.
+
See also:
equals
+ +
+

+ +

+
+ + + + + + + + +
final void java.lang.Object.notify (  ) 
+
+
+ +

+Causes one thread which is wait ing on the receiver to be made ready to run. +

+This does not guarantee that the thread will immediately run. The method can only be invoked by a thread which owns the receiver's monitor.

+

See also:
notifyAll

+wait()

+wait(long)

+wait(long,int)

+java.lang.Thread

+ +
+

+ +

+
+ + + + + + + + +
final void java.lang.Object.notifyAll (  ) 
+
+
+ +

+Causes all threads which are wait ing on the receiver to be made ready to run. +

+The threads are scheduled according to their priorities as specified in class Thread. Between any two threads of the same priority the one which waited first will be the first thread that runs after being notified. The method can only be invoked by a thread which owns the receiver's monitor.

+

See also:
notify

+wait()

+wait(long)

+wait(long,int)

+java.lang.Thread

+ +
+

+ +

+
+ + + + + + + + +
String java.lang.Object.toString (  ) 
+
+
+ +

+Answers a string containing a concise, human-readable description of the receiver. +

+

Returns:
String a printable representation for the receiver.
+ +
+

+ +

+
+ + + + + + + + +
final void java.lang.Object.wait (  )  throws InterruptedException
+
+
+ +

+Causes the thread which sent this message to be made not ready to run pending some change in the receiver (as indicated by notify or notifyAll). +

+The method can only be invoked by a thread which owns the receiver's monitor. A waiting thread can be sent interrupt() to cause it to prematurely stop waiting, so senders of wait should check that the condition they were waiting for has been met.

+When the thread waits, it gives up ownership of the receiver's monitor. When it is notified (or interrupted) it re-acquires the monitor before it starts running.

+

Exceptions:
+ + +
InterruptedException to interrupt the wait.
+
+
See also:
Thread.interrupt

+notify

+notifyAll

+wait(long)

+wait(long,int)

+java.lang.Thread

+ +
+

+ +

+
+ + + + + + + + + +
final void java.lang.Object.wait (long  time  )  throws InterruptedException
+
+
+ +

+Causes the thread which sent this message to be made not ready to run either pending some change in the receiver (as indicated by notify or notifyAll) or the expiration of the timeout. +

+The method can only be invoked by a thread which owns the receiver's monitor. A waiting thread can be sent interrupt() to cause it to prematurely stop waiting, so senders of wait should check that the condition they were waiting for has been met.

+When the thread waits, it gives up ownership of the receiver's monitor. When it is notified (or interrupted) it re-acquires the monitor before it starts running.

+

Parameters:
+ + +
time long The maximum time to wait in milliseconds.
+
+
Exceptions:
+ + +
InterruptedException to interrupt the wait.
+
+
See also:
notify

+notifyAll

+wait()

+wait(long,int)

+java.lang.Thread

+ +
+

+ +

+
+ + + + + + + + + + + + + + + + + + +
final void java.lang.Object.wait (long  time,
int  frac 
) throws InterruptedException
+
+
+ +

+Causes the thread which sent this message to be made not ready to run either pending some change in the receiver (as indicated by notify or notifyAll) or the expiration of the timeout. +

+The method can only be invoked by a thread which owns the receiver's monitor. A waiting thread can be sent interrupt() to cause it to prematurely stop waiting, so senders of wait should check that the condition they were waiting for has been met.

+When the thread waits, it gives up ownership of the receiver's monitor. When it is notified (or interrupted) it re-acquires the monitor before it starts running.

+

Parameters:
+ + + +
time long The maximum time to wait in milliseconds.
frac int The fraction of a mSec to wait, specified in nanoseconds.
+
+
Exceptions:
+ + +
InterruptedException to interrupt the wait.
+
+
See also:
notify

+notifyAll

+wait()

+wait(long)

+java.lang.Thread

+ +
+

+


The documentation for this class was generated from the following file:
    +
  • java/lang/Object.java
+
+
+ +

Genereated on Tue Dec 9 14:09:47 2008 by Doxygen.

+

(c) Copyright 2005, 2008 The Apache Software Foundation or its licensors, as applicable.

+
+
+ + Propchange: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Object.html ------------------------------------------------------------------------------ svn:eol-style = native Added: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Package-members.html URL: http://svn.apache.org/viewvc/harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Package-members.html?rev=724734&view=auto ============================================================================== --- harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Package-members.html (added) +++ harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Package-members.html Tue Dec 9 07:03:45 2008 @@ -0,0 +1,50 @@ + + +Harmony Kernel: Member List + + + + + + +

java.lang.Package Member List

This is the complete list of members for java.lang.Package, including all inherited members.

+ + + + + + + + + + + + + + + + + + + +
getAnnotation(Class< T > annotationType)java.lang.Package [package]
getAnnotations()java.lang.Package
getDeclaredAnnotations()java.lang.Package
getImplementationTitle()java.lang.Package
getImplementationVendor()java.lang.Package
getImplementationVersion()java.lang.Package
getName()java.lang.Package
getPackage(String packageName)java.lang.Package [static]
getPackages()java.lang.Package [static]
getSpecificationTitle()java.lang.Package
getSpecificationVendor()java.lang.Package
getSpecificationVersion()java.lang.Package
hashCode()java.lang.Package
isAnnotationPresent(Class<?extends Annotation > annotationType)java.lang.Package
isCompatibleWith(String version)java.lang.Package
isSealed()java.lang.Package
isSealed(URL url)java.lang.Package
Package()java.lang.Package [private]
toString()java.lang.Package


+
+ +

Genereated on Tue Dec 9 14:09:47 2008 by Doxygen.

+

(c) Copyright 2005, 2008 The Apache Software Foundation or its licensors, as applicable.

+
+
+ + Propchange: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Package-members.html ------------------------------------------------------------------------------ svn:eol-style = native Added: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Package.html URL: http://svn.apache.org/viewvc/harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Package.html?rev=724734&view=auto ============================================================================== --- harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Package.html (added) +++ harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Package.html Tue Dec 9 07:03:45 2008 @@ -0,0 +1,568 @@ + + +Harmony Kernel: java.lang.Package Class Reference + + + + + + + +

java.lang.Package Class Reference

+

+List of all members.


Detailed Description

+This class must be implemented by the VM vendor. +

+An instance of class Package contains information about a Java package. This includes implementation and specification versions. Typically this information is retrieved from the manifest.

+Packages are managed by class loaders. All classes loaded by the same loader from the same package share a Package instance.

+

See also:
ClassLoader
+
Since:
1.0
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Member Functions

Annotation[] getAnnotations ()
 Gets all of the annotations associated with this package.
Annotation[] getDeclaredAnnotations ()
 Gets all of the annotations directly declared on this element.
boolean isAnnotationPresent (Class<?extends Annotation > annotationType)
 Indicates whether or not the given annotation is present.
String getImplementationTitle ()
 Return the title of the implementation of this package, or null if this is unknown.
String getImplementationVendor ()
 Return the name of the vendor or organization that provided this implementation of the package, or null if this is unknown.
String getImplementationVersion ()
 Return the version of the implementation of this package, or null if this is unknown.
String getName ()
 Return the name of this package in the standard dot notation; for example: "java.lang".
String getSpecificationTitle ()
 Return the title of the specification this package implements, or null if this is unknown.
String getSpecificationVendor ()
 Return the name of the vendor or organization that owns and maintains the specification this package implements, or null if this is unknown.
String getSpecificationVersion ()
 Return the version of the specification this package implements, or null if this is unknown.
int hashCode ()
 Answers an integer hash code for the receiver.
boolean isCompatibleWith (String version) throws NumberFormatException
 Return true if this package's specification version is compatible with the specified version string.
boolean isSealed ()
 Return true if this package is sealed, false otherwise.
boolean isSealed (URL url)
 Return true if this package is sealed with respect to the specified URL, false otherwise.
String toString ()
 Answers a string containing a concise, human-readable description of the receiver.

Static Public Member Functions

static Package getPackage (String packageName)
 Attempt to locate the requested package in the caller's class loader.
static Package[] getPackages ()
 Return all the packages known to the caller's class loader.

Package Functions

public< T extends Annotation > T getAnnotation (Class< T > annotationType)
 Gets the annotation associated with the given annotation type and this package.

Private Member Functions

 Package ()
 Prevent this class from being instantiated.
+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + + +
java.lang.Package.Package (  )  [private]
+
+
+ +

+Prevent this class from being instantiated. +

+ +

+

+


Member Function Documentation

+ +
+
+ + + + + + + + + +
public<T extends Annotation> T java.lang.Package.getAnnotation (Class< T >  annotationType  )  [package]
+
+
+ +

+Gets the annotation associated with the given annotation type and this package. +

+

Returns:
An instance of Annotation or null.
+
Since:
1.5
+
See also:
java.lang.reflect.AnnotatedElement.getAnnotation(java.lang.Class)
+ +
+

+ +

+
+ + + + + + + + +
Annotation [] java.lang.Package.getAnnotations (  ) 
+
+
+ +

+Gets all of the annotations associated with this package. +

+

Returns:
An array of Annotation instances, which may be empty.
+
Since:
1.5
+
See also:
java.lang.reflect.AnnotatedElement.getAnnotations()
+ +
+

+ +

+
+ + + + + + + + +
Annotation [] java.lang.Package.getDeclaredAnnotations (  ) 
+
+
+ +

+Gets all of the annotations directly declared on this element. +

+

Returns:
An array of Annotation instances, which may be empty.
+
Since:
1.5
+
See also:
java.lang.reflect.AnnotatedElement.getDeclaredAnnotations()
+ +
+

+ +

+
+ + + + + + + + + +
boolean java.lang.Package.isAnnotationPresent (Class<?extends Annotation >  annotationType  ) 
+
+
+ +

+Indicates whether or not the given annotation is present. +

+

Returns:
A value of true if the annotation is present, otherwise false.
+
Since:
1.5
+
See also:
java.lang.reflect.AnnotatedElement.isAnnotationPresent(java.lang.Class)
+ +
+

+ +

+
+ + + + + + + + +
String java.lang.Package.getImplementationTitle (  ) 
+
+
+ +

+Return the title of the implementation of this package, or null if this is unknown. +

+The format of this string is unspecified.

+

Returns:
The implementation title, or null
+ +
+

+ +

+
+ + + + + + + + +
String java.lang.Package.getImplementationVendor (  ) 
+
+
+ +

+Return the name of the vendor or organization that provided this implementation of the package, or null if this is unknown. +

+The format of this string is unspecified.

+

Returns:
The implementation vendor name, or null
+ +
+

+ +

+
+ + + + + + + + +
String java.lang.Package.getImplementationVersion (  ) 
+
+
+ +

+Return the version of the implementation of this package, or null if this is unknown. +

+The format of this string is unspecified.

+

Returns:
The implementation version, or null
+ +
+

+ +

+
+ + + + + + + + +
String java.lang.Package.getName (  ) 
+
+
+ +

+Return the name of this package in the standard dot notation; for example: "java.lang". +

+

Returns:
The name of this package
+ +
+

+ +

+
+ + + + + + + + + +
static Package java.lang.Package.getPackage (String  packageName  )  [static]
+
+
+ +

+Attempt to locate the requested package in the caller's class loader. +

+If no package information can be located, null is returned.

+

Parameters:
+ + +
packageName The name of the package to find
+
+
Returns:
The package requested, or null
+
See also:
ClassLoader.getPackage
+ +
+

+ +

+
+ + + + + + + + +
static Package [] java.lang.Package.getPackages (  )  [static]
+
+
+ +

+Return all the packages known to the caller's class loader. +

+

Returns:
All the packages known to the caller's class loader
+
See also:
ClassLoader.getPackages
+ +
+

+ +

+
+ + + + + + + + +
String java.lang.Package.getSpecificationTitle (  ) 
+
+
+ +

+Return the title of the specification this package implements, or null if this is unknown. +

+

Returns:
The specification title, or null
+ +
+

+ +

+
+ + + + + + + + +
String java.lang.Package.getSpecificationVendor (  ) 
+
+
+ +

+Return the name of the vendor or organization that owns and maintains the specification this package implements, or null if this is unknown. +

+

Returns:
The specification vendor name, or null
+ +
+

+ +

+
+ + + + + + + + +
String java.lang.Package.getSpecificationVersion (  ) 
+
+
+ +

+Return the version of the specification this package implements, or null if this is unknown. +

+The version string is a sequence of non-negative integers separated by dots; for example: "1.2.3".

+

Returns:
The specification version string, or null
+ +
+

+ +

+
+ + + + + + + + +
int java.lang.Package.hashCode (  ) 
+
+
+ +

+Answers an integer hash code for the receiver. +

+Any two objects which answer true when passed to equals must answer the same value for this method.

+

Returns:
the receiver's hash
+ +
+

+ +

+
+ + + + + + + + + +
boolean java.lang.Package.isCompatibleWith (String  version  )  throws NumberFormatException
+
+
+ +

+Return true if this package's specification version is compatible with the specified version string. +

+Version strings are compared by comparing each dot separated part of the version as an integer.

+

Parameters:
+ + +
version The version string to compare against
+
+
Returns:
true if the package versions are compatible, false otherwise
+
Exceptions:
+ + +
NumberFormatException if the package's version string or the one provided is not in the correct format
+
+ +
+

+ +

+
+ + + + + + + + +
boolean java.lang.Package.isSealed (  ) 
+
+
+ +

+Return true if this package is sealed, false otherwise. +

+

Returns:
true if this package is sealed, false otherwise
+ +
+

+ +

+
+ + + + + + + + + +
boolean java.lang.Package.isSealed (URL  url  ) 
+
+
+ +

+Return true if this package is sealed with respect to the specified URL, false otherwise. +

+

Parameters:
+ + +
url the URL to test
+
+
Returns:
true if this package is sealed, false otherwise
+ +
+

+ +

+
+ + + + + + + + +
String java.lang.Package.toString (  ) 
+
+
+ +

+Answers a string containing a concise, human-readable description of the receiver. +

+

Returns:
a printable representation for the receiver.
+ +
+

+


The documentation for this class was generated from the following file:
    +
  • java/lang/Package.java
+
+
+ +

Genereated on Tue Dec 9 14:09:47 2008 by Doxygen.

+

(c) Copyright 2005, 2008 The Apache Software Foundation or its licensors, as applicable.

+
+
+ + Propchange: harmony/standard/site/docs/externals/kernel_doc/html/classjava_1_1lang_1_1Package.html ------------------------------------------------------------------------------ svn:eol-style = native