You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Nathan Beyer (JIRA)" <ji...@apache.org> on 2006/03/14 05:07:53 UTC

[jira] Created: (HARMONY-197) [classlib][luni] Java 5 enhancements for java.lang.Character

[classlib][luni] Java 5 enhancements for java.lang.Character
------------------------------------------------------------

         Key: HARMONY-197
         URL: http://issues.apache.org/jira/browse/HARMONY-197
     Project: Harmony
        Type: Improvement
  Components: Classlib  
    Reporter: Nathan Beyer


This issue is for enhancements to the java.lang.Character class to uplift it to match the Java 5 specification. Changes include the following:
* New constants
* valueOf method for boxing - the size of the cache is somewhat arbitrary and can easily be adjusted
* New Unicode code point methods
* Test case for all new methods.

The addition of the code point methods should enable the implementation of the code point methods in StringBuffer and StringBuilder. At least the knowledge gained will help :).

-- 
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


[jira] Closed: (HARMONY-197) [classlib][luni] Java 5 enhancements for java.lang.Character

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-197?page=all ]
     
Tim Ellison closed HARMONY-197:
-------------------------------


Verified by Nathan.

> [classlib][luni] Java 5 enhancements for java.lang.Character
> ------------------------------------------------------------
>
>          Key: HARMONY-197
>          URL: http://issues.apache.org/jira/browse/HARMONY-197
>      Project: Harmony
>         Type: Improvement
>   Components: Classlib
>     Reporter: Nathan Beyer
>     Assignee: Tim Ellison
>  Attachments: CharacterTest.java, Character_java_5_patch.txt
>
> This issue is for enhancements to the java.lang.Character class to uplift it to match the Java 5 specification. Changes include the following:
> * New constants
> * valueOf method for boxing - the size of the cache is somewhat arbitrary and can easily be adjusted
> * New Unicode code point methods
> * Test case for all new methods.
> The addition of the code point methods should enable the implementation of the code point methods in StringBuffer and StringBuilder. At least the knowledge gained will help :).

-- 
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


[jira] Updated: (HARMONY-197) [classlib][luni] Java 5 enhancements for java.lang.Character

Posted by "Nathan Beyer (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-197?page=all ]

Nathan Beyer updated HARMONY-197:
---------------------------------

    Attachment: Character_java_5_patch.txt
                CharacterTest.java

> [classlib][luni] Java 5 enhancements for java.lang.Character
> ------------------------------------------------------------
>
>          Key: HARMONY-197
>          URL: http://issues.apache.org/jira/browse/HARMONY-197
>      Project: Harmony
>         Type: Improvement
>   Components: Classlib
>     Reporter: Nathan Beyer
>  Attachments: CharacterTest.java, Character_java_5_patch.txt
>
> This issue is for enhancements to the java.lang.Character class to uplift it to match the Java 5 specification. Changes include the following:
> * New constants
> * valueOf method for boxing - the size of the cache is somewhat arbitrary and can easily be adjusted
> * New Unicode code point methods
> * Test case for all new methods.
> The addition of the code point methods should enable the implementation of the code point methods in StringBuffer and StringBuilder. At least the knowledge gained will help :).

-- 
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


[jira] Resolved: (HARMONY-197) [classlib][luni] Java 5 enhancements for java.lang.Character

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-197?page=all ]
     
Tim Ellison resolved HARMONY-197:
---------------------------------

    Resolution: Fixed

Thanks Nathan,

Patch applied to LUNI module java.lang.Character at repo revision 386060.

Please check that the patch was applied as you expected.


> [classlib][luni] Java 5 enhancements for java.lang.Character
> ------------------------------------------------------------
>
>          Key: HARMONY-197
>          URL: http://issues.apache.org/jira/browse/HARMONY-197
>      Project: Harmony
>         Type: Improvement
>   Components: Classlib
>     Reporter: Nathan Beyer
>     Assignee: Tim Ellison
>  Attachments: CharacterTest.java, Character_java_5_patch.txt
>
> This issue is for enhancements to the java.lang.Character class to uplift it to match the Java 5 specification. Changes include the following:
> * New constants
> * valueOf method for boxing - the size of the cache is somewhat arbitrary and can easily be adjusted
> * New Unicode code point methods
> * Test case for all new methods.
> The addition of the code point methods should enable the implementation of the code point methods in StringBuffer and StringBuilder. At least the knowledge gained will help :).

-- 
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


[jira] Commented: (HARMONY-197) [classlib][luni] Java 5 enhancements for java.lang.Character

Posted by "Nathan Beyer (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-197?page=comments#action_12370444 ] 

Nathan Beyer commented on HARMONY-197:
--------------------------------------

BTW: I ran the test cases against BEA's Java 5 Update 4 R26.0 JRE and Sun's Java 5 Update 5 JRE for reference.

> [classlib][luni] Java 5 enhancements for java.lang.Character
> ------------------------------------------------------------
>
>          Key: HARMONY-197
>          URL: http://issues.apache.org/jira/browse/HARMONY-197
>      Project: Harmony
>         Type: Improvement
>   Components: Classlib
>     Reporter: Nathan Beyer
>  Attachments: CharacterTest.java, Character_java_5_patch.txt
>
> This issue is for enhancements to the java.lang.Character class to uplift it to match the Java 5 specification. Changes include the following:
> * New constants
> * valueOf method for boxing - the size of the cache is somewhat arbitrary and can easily be adjusted
> * New Unicode code point methods
> * Test case for all new methods.
> The addition of the code point methods should enable the implementation of the code point methods in StringBuffer and StringBuilder. At least the knowledge gained will help :).

-- 
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


[jira] Assigned: (HARMONY-197) [classlib][luni] Java 5 enhancements for java.lang.Character

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-197?page=all ]

Tim Ellison reassigned HARMONY-197:
-----------------------------------

    Assign To: Tim Ellison

> [classlib][luni] Java 5 enhancements for java.lang.Character
> ------------------------------------------------------------
>
>          Key: HARMONY-197
>          URL: http://issues.apache.org/jira/browse/HARMONY-197
>      Project: Harmony
>         Type: Improvement
>   Components: Classlib
>     Reporter: Nathan Beyer
>     Assignee: Tim Ellison
>  Attachments: CharacterTest.java, Character_java_5_patch.txt
>
> This issue is for enhancements to the java.lang.Character class to uplift it to match the Java 5 specification. Changes include the following:
> * New constants
> * valueOf method for boxing - the size of the cache is somewhat arbitrary and can easily be adjusted
> * New Unicode code point methods
> * Test case for all new methods.
> The addition of the code point methods should enable the implementation of the code point methods in StringBuffer and StringBuilder. At least the knowledge gained will help :).

-- 
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


[jira] Commented: (HARMONY-197) [classlib][luni] Java 5 enhancements for java.lang.Character

Posted by "Nathan Beyer (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-197?page=comments#action_12370638 ] 

Nathan Beyer commented on HARMONY-197:
--------------------------------------

Looks good, thanks.

> [classlib][luni] Java 5 enhancements for java.lang.Character
> ------------------------------------------------------------
>
>          Key: HARMONY-197
>          URL: http://issues.apache.org/jira/browse/HARMONY-197
>      Project: Harmony
>         Type: Improvement
>   Components: Classlib
>     Reporter: Nathan Beyer
>     Assignee: Tim Ellison
>  Attachments: CharacterTest.java, Character_java_5_patch.txt
>
> This issue is for enhancements to the java.lang.Character class to uplift it to match the Java 5 specification. Changes include the following:
> * New constants
> * valueOf method for boxing - the size of the cache is somewhat arbitrary and can easily be adjusted
> * New Unicode code point methods
> * Test case for all new methods.
> The addition of the code point methods should enable the implementation of the code point methods in StringBuffer and StringBuilder. At least the knowledge gained will help :).

-- 
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