|
JMeter example source code file (ConstantThroughputTimerBeanInfo.java)
The JMeter ConstantThroughputTimerBeanInfo.java source code
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.jmeter.timers;
import java.beans.PropertyDescriptor;
import java.util.ResourceBundle;
import org.apache.jmeter.testbeans.BeanInfoSupport;
/**
* BeanInfo for the ConstantThroughputTimer.
*
*/
public class ConstantThroughputTimerBeanInfo extends BeanInfoSupport {
private static final String[] tags = new String[5];
public ConstantThroughputTimerBeanInfo() {
super(ConstantThroughputTimer.class);
ResourceBundle rb = (ResourceBundle) getBeanDescriptor().getValue(RESOURCE_BUNDLE);
// These must agree with the Timer resources
tags[0] = rb.getString("calcMode.1"); //$NON-NLS-1$
tags[1] = rb.getString("calcMode.2"); //$NON-NLS-1$
tags[2] = rb.getString("calcMode.3"); //$NON-NLS-1$
tags[3] = rb.getString("calcMode.4"); //$NON-NLS-1$
tags[4] = rb.getString("calcMode.5"); //$NON-NLS-1$
createPropertyGroup("delay", //$NON-NLS-1$
new String[] { "throughput", //$NON-NLS-1$
"calcMode" }); //$NON-NLS-1$
PropertyDescriptor p = property("throughput"); //$NON-NLS-1$
p.setValue(NOT_UNDEFINED, Boolean.TRUE);
p.setValue(DEFAULT, new Double(0.0));
p = property("calcMode"); //$NON-NLS-1$
p.setValue(NOT_UNDEFINED, Boolean.TRUE);
p.setValue(DEFAULT, tags[0]);
p.setValue(NOT_OTHER, Boolean.TRUE);
p.setValue(NOT_EXPRESSION, Boolean.TRUE);
p.setValue(TAGS, tags);
}
// TODO need to find better way to do this
public static int getCalcModeAsInt(String mode) {
for (int i = 0; i < tags.length; i++) {
if (tags[i].equals(mode)) {
return i;
}
}
return -1;
}
}
Other JMeter examples (source code examples)Here is a short list of links related to this JMeter ConstantThroughputTimerBeanInfo.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.