1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

adding keys() method to ICharArrayMap interface

This commit is contained in:
Mike Kucera 2008-01-21 23:24:37 +00:00
parent c286226230
commit f2dd942157

View file

@ -97,6 +97,11 @@ public interface ICharArrayMap<V> {
*/ */
Collection<V> values(); Collection<V> values();
/**
* Returns the keys stored in the map.
*/
Collection<char[]> keys();
/** /**
* Removes all mappings from the map. * Removes all mappings from the map.
*/ */