Index: /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/Event.java
===================================================================
--- /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/Event.java	(revision 334)
+++ /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/Event.java	(revision 335)
@@ -42,10 +42,10 @@
 	 * </p>
 	 */
-	private String type;
+	protected String type;
 
 	/**
 	 * </p> Target of the event.
 	 */
-	private String target = null;
+	protected String target = null;
 
 	/**
@@ -54,10 +54,10 @@
 	 * </p>
 	 */
-	private String targetShort = null;
+	protected String targetShort = null;
 
 	/**
 	 * Further information about the event that shall be included in its Id.
 	 */
-	private String idInfo = "";
+	protected String idInfo = "";
 
 	/**
Index: /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/ReplayableEvent.java
===================================================================
--- /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/ReplayableEvent.java	(revision 334)
+++ /trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/ReplayableEvent.java	(revision 335)
@@ -35,5 +35,5 @@
 	 * </p>
 	 */
-	private List<T> replayEvents = new LinkedList<T>();;
+	protected List<T> replayEvents = new LinkedList<T>();;
 
 	/**
@@ -44,5 +44,5 @@
 	 * </p>
 	 */
-	private boolean replayValid = true;
+	protected boolean replayValid = true;
 
 	/**
@@ -51,5 +51,5 @@
 	 * </p>
 	 */
-	private IReplayDecorator decorator = null;
+	protected IReplayDecorator decorator = null;
 
 	/**
