001    package net.sf.jolene.html;
002    
003    import java.util.Collection;
004    import java.util.Set;
005    
006    /**
007     * Comments for ICollection go here.
008     *
009     * @author Dan Howard
010     * @since Aug 3, 2008 6:12:40 PM
011     */
012    public interface ICollection {
013    
014        Set<String> keySet();
015        //Collection<String> values(); // needed???? nah....
016        void clear();
017    }