DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=32801>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32801





------- Additional Comments From [EMAIL PROTECTED]  2005-05-20 11:07 -------
A better example code would be:

        ListOrderedMap lom = new ListOrderedMap();
        lom.put("3", "33");
        lom.put("1", "11");
        lom.put("2", "22");
        for (int i = 0; i < lom.size(); i++) {
            System.out.println("Key: " + lom.get(i) + "; Value: " + lom
.getValue(i));
        }
        System.out.println("-----------------------");
        SortedArrayMap sam = new SortedArrayMap();
        sam.put("3", "33");
        sam.put("1", "11");
        sam.put("2", "22");
        for (int i = 0; i < sam.size(); i++) {
            System.out.println("Key: " + sam.getKey(i) + "; Value: " + sam
.getValue(i));
        }

The output is the same as in the example above.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to