1 27 28 package org.objectweb.speedo.pobjects.common; 29 30 public class ParamsTest { 31 32 private int nbth; 34 private int nbtx; 36 private int nbc; 38 private int to; 40 private int startid; 42 private int dbSize; 44 45 46 47 50 public int getNbc() { 51 return nbc; 52 } 53 54 57 public void setNbc(int nbc) { 58 this.nbc = nbc; 59 } 60 61 64 public int getNbth() { 65 return nbth; 66 } 67 68 71 public void setNbth(int nbth) { 72 this.nbth = nbth; 73 } 74 75 78 public int getNbtx() { 79 return nbtx; 80 } 81 82 85 public void setNbtx(int nbtx) { 86 this.nbtx = nbtx; 87 } 88 89 92 public int getStartid() { 93 return startid; 94 } 95 96 99 public void setStartid(int startid) { 100 this.startid = startid; 101 } 102 103 106 public int getTo() { 107 return to; 108 } 109 110 113 public void setTo(int to) { 114 this.to = to; 115 } 116 117 125 public ParamsTest(int nbth, int nbtx, int nbc, int to, int startid) { 126 this.nbth = nbth; 127 this.nbtx = nbtx; 128 this.nbc = nbc; 129 this.to = to; 130 this.startid = startid; 131 } 132 140 public ParamsTest(int nbth, int nbtx, int nbc, int to,int startid, int dbSize) { 141 this.nbth = nbth; 142 this.nbtx = nbtx; 143 this.nbc = nbc; 144 this.to = to; 145 this.dbSize = dbSize; 146 } 147 150 public int getDbSize() { 151 return dbSize; 152 } 153 154 157 public void setDbSize(int dbSize) { 158 this.dbSize = dbSize; 159 } 160 161 162 } 163 | Popular Tags |