You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Geir Magnusson Jr (JIRA)" <ji...@apache.org> on 2006/10/05 00:28:23 UTC

[jira] Closed: (HARMONY-792) [classlib][kernel] it will nice if java.lang.Package class will implement all methods

     [ http://issues.apache.org/jira/browse/HARMONY-792?page=all ]

Geir Magnusson Jr closed HARMONY-792.
-------------------------------------


> [classlib][kernel] it will nice if java.lang.Package class will implement all methods
> -------------------------------------------------------------------------------------
>
>                 Key: HARMONY-792
>                 URL: http://issues.apache.org/jira/browse/HARMONY-792
>             Project: Harmony
>          Issue Type: Improvement
>          Components: Classlib
>            Reporter: Vladimir Ivanov
>         Assigned To: Geir Magnusson Jr
>            Priority: Trivial
>
> The Harmony java.lang.Package class returns 'null'  values for some methods. Note, the implementation of this class is vm-dependent so should be implemented as part of vm.
> ===================== test.java =========================
> public class test  {
>     public static void main (String[] args) { 
>         Package pac = Package.getPackage("java.lang");
>         System.out.println("getImplementationVersion = " + pac.getImplementationVersion());
>         System.out.println("getImplementationVendor = " + pac.getImplementationVendor());
>         System.out.println("getSpecificationVersion = " + pac.getSpecificationVersion());
>     } 
> }
> =====================================================
> Output:
> C:\tmp\tmp17>C:\jdk1.5.0_06\bin\java.exe -showversion test
> java version "1.5.0_06"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)
> Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode)
> getImplementationVersion=1.5.0_06
> getImplementationVendor=Sun Microsystems, Inc.
> getSpecificationVersion=1.5
> C:\tmp\tmp17>C:\harmony\trunk_0427\deploy\jdk\jre\bin\java.exe -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> getImplementationVersion=null
> getImplementationVendor=null
> getSpecificationVersion=null
> C:\tmp\tmp17>C:\harmony\drlvm\trunk\build\win_ia32_msvc_release\deploy\jre\bin\ij -showversion test
> Apache Harmony DRLVM HEAD-4807 (2006-05-02), Windows/ia32/msvc 1310, release
> <crash>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira