Changeset 191


Ignore:
Timestamp:
09/24/11 02:11:33 (13 years ago)
Author:
sherbold
Message:

+ added method that lists the keys of all objects stored in the global data container

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/data/GlobalDataContainer.java

    r187 r191  
    204204         * <p> 
    205205         * Returns the keys of all {@link IStochasticProcess}s contained in the 
    206          * storage 
     206         * storage. 
    207207         * </p> 
    208208         *  
     
    219219        } 
    220220 
     221        /** 
     222         * <p> 
     223         * Returns the keys of all objects contained in the storage. 
     224         * </p> 
     225         *  
     226         * @return keys of all objects in the storage 
     227         */ 
     228        public Collection<String> getAllKeys() { 
     229                return dataObjects.keySet(); 
     230        } 
     231 
    221232} 
Note: See TracChangeset for help on using the changeset viewer.