Index: /trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/data/GlobalDataContainer.java
===================================================================
--- /trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/data/GlobalDataContainer.java	(revision 186)
+++ /trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/data/GlobalDataContainer.java	(revision 187)
@@ -5,6 +5,12 @@
 import java.io.ObjectOutputStream;
 import java.io.Serializable;
+import java.util.Collection;
 import java.util.HashMap;
+import java.util.LinkedList;
+import java.util.List;
 import java.util.Map;
+import java.util.Map.Entry;
+
+import de.ugoe.cs.eventbench.models.IStochasticProcess;
 
 /**
@@ -172,3 +178,44 @@
 	}
 
+	/**
+	 * <p>
+	 * Returns all keys of collections of sequences contained in the storage.
+	 * </p>
+	 * 
+	 * @return keys of all collections of sequences contained in the storage
+	 */
+	public Collection<String> getAllSequencesNames() {
+		Collection<String> allSequencesNames = new LinkedList<String>();
+		for (Entry<String, Object> entry : dataObjects.entrySet()) {
+			if (entry.getValue() instanceof Collection<?>) {
+				Object listObj = ((Collection<?>) entry.getValue()).iterator()
+						.next();
+				if (listObj instanceof List<?>) {
+					if (((List<?>) listObj).iterator().next() instanceof Event<?>) {
+						allSequencesNames.add(entry.getKey());
+					}
+				}
+			}
+		}
+		return allSequencesNames;
+	}
+
+	/**
+	 * <p>
+	 * Returns the keys of all {@link IStochasticProcess}s contained in the
+	 * storage
+	 * </p>
+	 * 
+	 * @return keys of all {@link IStochasticProcess}s contained in the storage
+	 */
+	public Collection<String> getAllModelNames() {
+		Collection<String> modelNames = new LinkedList<String>();
+		for (Entry<String, Object> entry : dataObjects.entrySet()) {
+			if (entry.getValue() instanceof IStochasticProcess) {
+				modelNames.add(entry.getKey());
+			}
+		}
+		return modelNames;
+	}
+
 }
