Math2mat

/home/ythoma/docs/math2mat/svn/wp1/framework/m2mGUI/src/m2m/backend/project/SimulationResult.java

Go to the documentation of this file.
00001 
00021 package m2m.backend.project;
00022 
00030 public class SimulationResult {
00031 
00032         // Latency of the calculus
00033         private int latency;
00034         
00035         // Number of samples supplied to the simulation
00036         private int nbInputs;
00037         
00038         // Total execution time of the simulation
00039         private int TotalTime;
00040         
00041         // Prefix used to send info/warning/error/fatal messages from simulation
00042         private String prefix;
00043 
00044         // Number of simulation errors
00045         private int nbErrors;
00046         
00047         private int maxBitError;
00048         
00052         public int getMaxBitError() {
00053                 return maxBitError;
00054         }
00055 
00059         public void setMaxBitError(int maxBitError) {
00060                 this.maxBitError = maxBitError;
00061         }
00062 
00066         public int getNbErrors() {
00067                 return nbErrors;
00068         }
00069 
00073         public void setNbErrors(int nbErrors) {
00074                 this.nbErrors = nbErrors;
00075         }
00076 
00080         public String getPrefix() {
00081                 return prefix;
00082         }
00083 
00087         public void setPrefix(String prefix) {
00088                 this.prefix = prefix;
00089         }
00090 
00094         public int getLatency() {
00095                 return latency;
00096         }
00097 
00101         public void setLatency(int latency) {
00102                 this.latency = latency;
00103         }
00104 
00108         public int getNbInputs() {
00109                 return nbInputs;
00110         }
00111 
00115         public void setNbInputs(int nbInputs) {
00116                 this.nbInputs = nbInputs;
00117         }
00118 
00122         public int getTotalTime() {
00123                 return TotalTime;
00124         }
00125 
00129         public void setTotalTime(int totalTime) {
00130                 TotalTime = totalTime;
00131         }
00132 
00133 }
 All Classes Namespaces Files Functions Variables Enumerations