alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

JMeter example source code file (RandomVariableConfigBeanInfo.java)

This example JMeter source code file (RandomVariableConfigBeanInfo.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - JMeter tags/keywords

bean, javabean, maximum_value, minimum_value, minimum_value, non-nls-1, non-nls-1, output_format, per_thread, per_thread, propertydescriptor, random_seed, randomvariableconfigbeaninfo, string, string, variable_name

The JMeter RandomVariableConfigBeanInfo.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.config;

import java.beans.PropertyDescriptor;

import org.apache.jmeter.testbeans.BeanInfoSupport;

public class RandomVariableConfigBeanInfo extends BeanInfoSupport {

    // These group names must have .displayName properties
    private static final String VARIABLE_GROUP = "variable"; // $NON-NLS-1$
    private static final String OPTIONS_GROUP = "options"; // $NON-NLS-1$
    private static final String RANDOM_GROUP = "random"; // $NON-NLS-1$

    // These variable names must have .displayName properties and agree with the getXXX()/setXXX() methods
    private static final String PER_THREAD = "perThread"; // $NON-NLS-1$
    private static final String RANDOM_SEED = "randomSeed"; // $NON-NLS-1$
    private static final String MAXIMUM_VALUE = "maximumValue"; // $NON-NLS-1$
    private static final String MINIMUM_VALUE = "minimumValue"; // $NON-NLS-1$
    private static final String OUTPUT_FORMAT = "outputFormat"; // $NON-NLS-1$
    private static final String VARIABLE_NAME = "variableName"; // $NON-NLS-1$

    public    RandomVariableConfigBeanInfo() {
        super(RandomVariableConfig.class);

        PropertyDescriptor p;

        createPropertyGroup(VARIABLE_GROUP, new String[] { VARIABLE_NAME, OUTPUT_FORMAT, });

        p = property(VARIABLE_NAME);
        p.setValue(NOT_UNDEFINED, Boolean.TRUE);
        p.setValue(DEFAULT, ""); // $NON-NLS-1$

        p = property(OUTPUT_FORMAT);
        p.setValue(NOT_UNDEFINED, Boolean.TRUE);
        p.setValue(DEFAULT, ""); // $NON-NLS-1$

        createPropertyGroup(RANDOM_GROUP,
        new String[] { MINIMUM_VALUE, MAXIMUM_VALUE, RANDOM_SEED, });

        p = property(MINIMUM_VALUE);
        p.setValue(NOT_UNDEFINED, Boolean.TRUE);
        p.setValue(DEFAULT, "1"); // $NON-NLS-1$

        p = property(MAXIMUM_VALUE);
        p.setValue(NOT_UNDEFINED, Boolean.TRUE);
        p.setValue(DEFAULT, ""); // $NON-NLS-1$

        p = property(RANDOM_SEED);
        p.setValue(NOT_UNDEFINED, Boolean.TRUE);
        p.setValue(DEFAULT, ""); // $NON-NLS-1$

        createPropertyGroup(OPTIONS_GROUP, new String[] { PER_THREAD, });

        p = property(PER_THREAD);
        p.setValue(NOT_UNDEFINED, Boolean.TRUE);
        p.setValue(NOT_EXPRESSION, Boolean.TRUE);
        p.setValue(NOT_OTHER, Boolean.TRUE);
        p.setValue(DEFAULT, Boolean.FALSE);
    }
}

Other JMeter examples (source code examples)

Here is a short list of links related to this JMeter RandomVariableConfigBeanInfo.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 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.