You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexey A. Ivanov (JIRA)" <ji...@apache.org> on 2006/12/12 15:49:22 UTC

[jira] Commented: (HARMONY-2649) [classlib][swing] j.s.undo.UndoManager.edits has different capacity

    [ http://issues.apache.org/jira/browse/HARMONY-2649?page=comments#action_12457743 ] 
            
Alexey A. Ivanov commented on HARMONY-2649:
-------------------------------------------

The default limit for UndoManager is 100, and it should ensure the underlying Vector has its capacity set to 100.

> [classlib][swing] j.s.undo.UndoManager.edits has different capacity
> -------------------------------------------------------------------
>
>                 Key: HARMONY-2649
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2649
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexey A. Ivanov
>            Priority: Minor
>
> import javax.swing.undo.UndoManager;
> public class Test {
>     private static class UM extends UndoManager {
>         public int getEditsCapacity() {
>             return edits.capacity();
>         }
>     }
>     
>     public static void main(String[] args) {
>         System.out.println(new UM().getEditsCapacity());
>     }
> }
> Harmony outputs: 10.
> RI outputs: 100.

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