Ignore:
Timestamp:
10/05/11 17:29:56 (13 years ago)
Author:
sherbold
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/commands/AbstractTrainCommand.java

    r209 r240  
    55import java.util.List; 
    66 
     7import de.ugoe.cs.eventbench.CommandHelpers; 
    78import de.ugoe.cs.eventbench.SequenceInstanceOf; 
    89import de.ugoe.cs.eventbench.data.Event; 
     
    7374                                sequencesName); 
    7475                if (dataObject == null) { 
    75                         Console.println("Object " + sequencesName 
    76                                         + " not found in storage."); 
     76                        CommandHelpers.objectNotFoundMessage(sequencesName); 
    7777                        return; 
    7878                } 
    7979                if (!SequenceInstanceOf.isCollectionOfSequences(dataObject)) { 
    80                         Console.println("Object " + sequencesName 
    81                                         + "not of type Collection<List<Event<?>>>."); 
     80                        CommandHelpers.objectNotType(sequencesName, 
     81                                        "Collection<List<Event<?>>>"); 
    8282                        return; 
    8383                } 
Note: See TracChangeset for help on using the changeset viewer.