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/CMDcalcCoverage.java

    r234 r240  
    55import java.util.List; 
    66 
     7import de.ugoe.cs.eventbench.CommandHelpers; 
    78import de.ugoe.cs.eventbench.SequenceInstanceOf; 
    89import de.ugoe.cs.eventbench.coverage.CoverageCalculatorObserved; 
     
    5758                                observedName); 
    5859                if (dataObjectProcess == null) { 
    59                         Console.printerrln("Model " + modelname + " not found in storage."); 
     60                        CommandHelpers.objectNotFoundMessage(modelname); 
    6061                        return; 
    6162                } 
    6263                if (!(dataObjectProcess instanceof IStochasticProcess)) { 
    63                         Console.printerrln("Object " + modelname 
    64                                         + " not of type IStochasticProcess!"); 
     64                        CommandHelpers.objectNotType(modelname, "IStochasticProcess"); 
    6565                        return; 
    6666                } 
    6767                if (dataObjectObserved == null) { 
    68                         Console.printerrln("Observed sequences not found in storage."); 
     68                        CommandHelpers.objectNotFoundMessage(observedName); 
    6969                        return; 
    7070                } 
    7171                if (!SequenceInstanceOf.isCollectionOfSequences(dataObjectObserved)) { 
    72                         Console.printerrln("Object " + observedName 
    73                                         + " of type Collection<List<Event<?>>>!"); 
     72                        CommandHelpers.objectNotType(observedName, 
     73                                        "Collection<List<Event<?>>>"); 
    7474                        return; 
    7575                } 
     
    9797                                        .getData(sequenceName); 
    9898                        if (dataObjectSequences == null) { 
    99                                 Console.println("Sequences " + sequenceName 
    100                                                 + " not found in storage."); 
     99                                CommandHelpers.objectNotFoundMessage(sequenceName); 
    101100                                return; 
    102101                        } else if (!SequenceInstanceOf 
    103102                                        .isCollectionOfSequences(dataObjectSequences)) { 
    104                                 Console.printerrln("Object " + sequenceName 
    105                                                 + "not of type Collection<List<Event<?>!"); 
     103                                CommandHelpers.objectNotType(sequenceName, 
     104                                                "Collection<List<Event<?>>>"); 
    106105                                return; 
    107106                        } 
Note: See TracChangeset for help on using the changeset viewer.