87888990919293
* * @param numThreads the number of threads. */ public void setNumThreads(int numThreads) { setProperty(new IntegerProperty(NUM_THREADS, numThreads)); }
211212213214215216217
* * @param rampUp the ramp-up value. */ public void setRampUp(int rampUp) { setProperty(new IntegerProperty(RAMP_TIME,rampUp)); }
89909192939495
runThisTime = false; } public void setStyle(int style) { setProperty(new IntegerProperty(STYLE, style)); }
109110111112113114115
return getPropertyAsBoolean(PERTHREAD); } public void setMaxThroughput(int maxThroughput) { setProperty(new IntegerProperty(MAXTHROUGHPUT, maxThroughput)); }
291292293294295296297298299300301
{ property= new FloatProperty(); } else if (value instanceof Integer) { property= new IntegerProperty(); } else if (value instanceof Long) { property= new LongProperty(); }
274275276277278279280
setIncludeList(new HashSet<String>()); setCaptureHttpHeaders(true); // maintain original behaviour } public void setPort(int port) { this.setProperty(new IntegerProperty(PORT, port)); }
295296297298299300301
setProperty(new BooleanProperty(CAPTURE_HTTP_HEADERS, capture)); } public void setGroupingMode(int grouping) { this.groupingMode = grouping; setProperty(new IntegerProperty(GROUPING_MODE, grouping)); }
305306307308309310311
setProperty(new BooleanProperty(ADD_ASSERTIONS, b)); } @Deprecated public void setSamplerTypeName(int samplerTypeName) { setProperty(new IntegerProperty(SAMPLER_TYPE_NAME, samplerTypeName)); }
270271272273274275276
* exact match to use, or 0, which is interpreted as meaning random. * * @param matchNumber */ public void setMatchNumber(int matchNumber) { setProperty(new IntegerProperty(MATCH_NUMBER, matchNumber)); }
477478479480481482483
* @param num_messages - * The number of messages to retrieve from the mail server. Set * this value to -1 to retrieve all messages. */ public void setNumMessages(int num_messages) { setProperty(new IntegerProperty(NUM_MESSAGES, num_messages)); }