1 18 19 package org.apache.jmeter.timers; 20 21 import java.beans.PropertyDescriptor ; 22 23 import org.apache.jmeter.testbeans.BeanInfoSupport; 24 25 30 public class ConstantThroughputTimerBeanInfo extends BeanInfoSupport 31 { 32 public ConstantThroughputTimerBeanInfo() 33 { 34 super(ConstantThroughputTimer.class); 35 36 createPropertyGroup("delay", new String [] { "throughput" }); 37 38 PropertyDescriptor p= property("throughput"); 39 p.setValue(NOT_UNDEFINED, Boolean.TRUE); 40 p.setValue(DEFAULT, new Double (0.0)); 41 } 42 } | Popular Tags |