Changeset 240 for trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/commands/CMDgenerateReplayfile.java
- Timestamp:
- 10/05/11 17:29:56 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/commands/CMDgenerateReplayfile.java
r209 r240 5 5 import java.util.List; 6 6 7 import de.ugoe.cs.eventbench.CommandHelpers; 7 8 import de.ugoe.cs.eventbench.ReplayGenerator; 8 9 import de.ugoe.cs.eventbench.SequenceInstanceOf; … … 53 54 sequencesName); 54 55 if (dataObject == null) { 55 Console.println("Object " + sequencesName 56 + " not found in storage."); 56 CommandHelpers.objectNotFoundMessage(sequencesName); 57 57 return; 58 58 } 59 59 if (!SequenceInstanceOf.isCollectionOfSequences(dataObject)) { 60 Co nsole.println("Object " + sequencesName61 + "not of type Collection<List<Event<?>>>.");60 CommandHelpers.objectNotType(sequencesName, 61 "Collection<List<Event<?>>>"); 62 62 return; 63 63 }
Note: See TracChangeset
for help on using the changeset viewer.