Dear Wiki user, You have subscribed to a wiki page or wiki category on "Jakarta-jmeter Wiki" for change notification.
The following page has been changed by Mikko Ohtamaa: http://wiki.apache.org/jakarta-jmeter/BuildingPlugInWithEclipse ------------------------------------------------------------------------------ 1. An element class which interits from [TestElement, ConfigurationElement, XXXElement] and implements TestBean interface. TestBean interface marks classes which JMeter plug-in class loader loads automatically. - 2. Each TestBean class needs BeanInfoSupport class whichs describes the properties of the element class + 2. Each TestBean class needs BeanInfoSupport class whichs describes the properties of the element class. This class name '''must be''' MyTestElement + BeanInfo, e.g. MyTestElementBeanInfo, or the class loader doesn't find it. 3. Properties file which gives out user interface strings for properties @@ -153, +153 @@ }}} - Java source fi/xxx/jmeter/sip/core/SIPReceiverBeanInfoSupport + Java source fi/xxx/jmeter/sip/core/SIPReceiverBeanInfoSupport {{{ @@ -164, +164 @@ import org.apache.jmeter.config.CSVDataSet; import org.apache.jmeter.testbeans.BeanInfoSupport; - public class SIPReceiverBeanInfoSupport extends BeanInfoSupport { + public class SIPReceiverBeanInfo extends BeanInfoSupport { - public SIPReceiverBeanInfoSupport() { + public SIPReceiverBeanInfo() { super(SIPReceiver.class); createPropertyGroup("sip_receiver", new String[] { "filename", "variableNames", "delimiter" }); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
