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/CMDupdateModel.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; 
     
    4344                                sequencesName); 
    4445                if (dataObject == null) { 
    45                         Console.println("Object " + sequencesName 
    46                                         + " not found in storage."); 
     46                        CommandHelpers.objectNotFoundMessage(sequencesName); 
    4747                        return; 
    4848                } 
    4949                if (!SequenceInstanceOf.isCollectionOfSequences(dataObject)) { 
    50                         Console.println("Object " + sequencesName 
    51                                         + "not of type Collection<List<Event<?>>>."); 
     50                        CommandHelpers.objectNotType(sequencesName, 
     51                                        "Collection<List<Event<?>>>"); 
    5252                        return; 
    5353                } 
     
    5656                dataObject = GlobalDataContainer.getInstance().getData(modelname); 
    5757                if (dataObject == null) { 
    58                         Console.println("Object " + modelname + " not found in storage."); 
     58                        CommandHelpers.objectNotFoundMessage(modelname); 
    5959                        return; 
    6060                } 
    6161                if (!(dataObject instanceof TrieBasedModel)) { 
    62                         Console.println("Object " + modelname 
    63                                         + " not of type TrieBasedModel"); 
     62                        CommandHelpers.objectNotType(modelname, "TrieBasedModel"); 
    6463                        return; 
    6564                } 
Note: See TracChangeset for help on using the changeset viewer.