Java Code Examples for kg.apc.jmeter.JMeterPluginsUtils#prefixLabel()

The following examples show how to use kg.apc.jmeter.JMeterPluginsUtils#prefixLabel() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: HitsPerSecondGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Hits per Second");
}
 
Example 2
Source File: JSONFormatterGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("JSON Format Post Processor");
}
 
Example 3
Source File: TimesVsThreadsGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Response Times vs Threads");
}
 
Example 4
Source File: XMLFormatPostProcessorGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("XML Format Post Processor");
}
 
Example 5
Source File: ResponseTimesOverTimeGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Response Times Over Time");
}
 
Example 6
Source File: HttpSimpleTableControlGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("HTTP Simple Table Server");
}
 
Example 7
Source File: TransactionsPerSecondGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Transactions per Second");
}
 
Example 8
Source File: BytesThroughputOverTimeGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Bytes Throughput Over Time");
}
 
Example 9
Source File: ParameterizedControllerGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Parameterized Controller");
}
 
Example 10
Source File: ResponseCodesPerSecondGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Response Codes per Second");
}
 
Example 11
Source File: WebDriverSamplerGui.java    From jmeter-plugins-webdriver with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("WebDriver Sampler");
}
 
Example 12
Source File: UDPSamplerGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("UDP Request");
}
 
Example 13
Source File: RotatingResultCollectorGui.java    From jmeter-bzm-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Rotating Simple Data Writer");
}
 
Example 14
Source File: OAuthSamplerGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("OAuth Sampler");
}
 
Example 15
Source File: ThroughputVsThreadsGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel()
{
    return JMeterPluginsUtils.prefixLabel("Transaction Throughput vs Threads");
}
 
Example 16
Source File: ChromeDriverConfigGui.java    From jmeter-plugins-webdriver with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Chrome Driver Config");
}
 
Example 17
Source File: FirefoxDriverConfigGui.java    From jmeter-plugins-webdriver with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Firefox Driver Config");
}
 
Example 18
Source File: RemoteDriverConfigGui.java    From jmeter-plugins-webdriver with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Remote Driver Config");
}
 
Example 19
Source File: InternetExplorerDriverConfigGui.java    From jmeter-plugins-webdriver with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Internet Explorer Driver Config");
}
 
Example 20
Source File: RawRequestSourcePreProcessorGui.java    From jmeter-plugins with Apache License 2.0 4 votes vote down vote up
@Override
public String getStaticLabel() {
    return JMeterPluginsUtils.prefixLabel("Raw Data Source PreProcessor");
}