- Timestamp:
- 07/20/11 11:16:01 (13 years ago)
- Location:
- trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/commands
- Files:
-
- 1 added
- 1 deleted
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/commands/CMDcalcCoverage.java
r127 r130 46 46 } 47 47 if( !(dataObjectProcess instanceof IStochasticProcess) ) { 48 Console.printerrln("Object " + modelname + " not of type MarkovModel!");48 Console.printerrln("Object " + modelname + " not of type IStochasticProcess!"); 49 49 return; 50 50 } -
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/commands/CMDlistSymbols.java
r103 r130 10 10 import de.ugoe.cs.util.console.Console; 11 11 12 public class CMDlistS tates implements Command {12 public class CMDlistSymbols implements Command { 13 13 14 14 @Override … … 34 34 } else { 35 35 model = (IStochasticProcess) dataObject; 36 String[] stateStrings = model.getS tateStrings();36 String[] stateStrings = model.getSymbolStrings(); 37 37 if( sort ) { 38 38 Arrays.sort(stateStrings);
Note: See TracChangeset
for help on using the changeset viewer.