Index: /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/coverage/CoverageCalculatorProcess.java
===================================================================
--- /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/coverage/CoverageCalculatorProcess.java	(revision 291)
+++ /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/coverage/CoverageCalculatorProcess.java	(revision 292)
@@ -33,5 +33,5 @@
 	 * </p>
 	 */
-	private final Collection<List<? extends Event<?>>> sequences;
+	private Collection<List<? extends Event<?>>> sequences;
 
 	/**
@@ -68,6 +68,6 @@
 	/**
 	 * <p>
-	 * Constructor. Creates a new CoverageCalculatorProcess for a given stochastic
-	 * process and generated sequences.
+	 * Constructor. Creates a new CoverageCalculatorProcess for a given
+	 * stochastic process and generated sequences.
 	 * </p>
 	 * 
@@ -162,9 +162,10 @@
 		return weight;
 	}
-	
+
 	/**
 	 * <p>
 	 * Returns the number of covered subsequences of length k.
 	 * </p>
+	 * 
 	 * @return number of covered subsequences
 	 */
@@ -176,8 +177,9 @@
 		return containedSubSeqs.size();
 	}
-	
-	/**
-	 * <p>
-	 * Returns the number of possible subsequences of length k according to the stochastic process.
+
+	/**
+	 * <p>
+	 * Returns the number of possible subsequences of length k according to the
+	 * stochastic process.
 	 * </p>
 	 * 
@@ -191,3 +193,16 @@
 	}
 
+	/**
+	 * <p>
+	 * Sets a new collection of sequences for which the coverage is analyzed.
+	 * </p>
+	 * 
+	 * @param newSequences
+	 *            new collection of sequences
+	 */
+	public void setSequences(Collection<List<? extends Event<?>>> newSequences) {
+		this.sequences = newSequences;
+		containedSubSeqs = null;
+	}
+
 }
