📄 constantthroughputtimerbeaninfo.java
字号:
/*
* 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;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -