No subject


Fri Aug 6 17:04:17 PDT 2004


    public boolean removeAll(Collection c) {
        boolean modified = false;
        Iterator e = iterator();
        while (e.hasNext()) {
            if(c.contains(e.next())) {
                e.remove();
                modified = true;
            }
        }
        return modified;
    }

-jh-



More information about the jdom-interest mailing list