Package com.atlantbh.jmeter.plugins.hbasecomponents.config.gui

Source Code of com.atlantbh.jmeter.plugins.hbasecomponents.config.gui.HBaseConnectionGui

/*!
* AtlantBH Custom Jmeter Components v1.0.0
* http://www.atlantbh.com/jmeter-components/
*
* Copyright 2011, AtlantBH
*
* Licensed under the under the Apache License, Version 2.0.
*/
package com.atlantbh.jmeter.plugins.hbasecomponents.config.gui;

import java.awt.BorderLayout;
import java.awt.Dimension;

import javax.swing.BoxLayout;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;

import org.apache.jmeter.config.gui.AbstractConfigGui;
import org.apache.jmeter.gui.util.VerticalPanel;
import org.apache.jmeter.testelement.TestElement;
import org.apache.jorphan.gui.JLabeledTextField;

import com.atlantbh.jmeter.plugins.hbasecomponents.config.HBaseConnection;
import kg.apc.jmeter.JMeterPluginsUtils;

/**
* GUI for {@link HBaseConnection}
*
*/
public class HBaseConnectionGui extends AbstractConfigGui {

    private static final long serialVersionUID = -2817355736341379758L;
    private JLabeledTextField zkHostTF;
    private JLabeledTextField connNameTF;
    private static final String WIKIPAGE = "HBaseConnection";

    public HBaseConnectionGui() {
        super();
        init();
    }

    private void init() {
        setBorder(makeBorder());
        setLayout(new BorderLayout(0, 10));

        JPanel vertPanel = new VerticalPanel();
        vertPanel.add(JMeterPluginsUtils.addHelpLinkToPanel(makeTitlePanel(), WIKIPAGE), BorderLayout.NORTH);

        add(vertPanel, BorderLayout.NORTH);

        JPanel mainPanel = new JPanel();
        mainPanel.setLayout(new BoxLayout(mainPanel, BoxLayout.Y_AXIS));

        mainPanel.add(connNameTF = createTF("Connection name"));
        mainPanel.add(zkHostTF = createTF("ZK host"));

        add(mainPanel, BorderLayout.CENTER);
    }

    public String getStaticLabel() {
        return JMeterPluginsUtils.prefixLabel("HBase Connection Config");
    }

    @Override
    public String getLabelResource() {
        return this.getClass().getSimpleName();
    }

    @Override
    public TestElement createTestElement() {
        HBaseConnection conn = new HBaseConnection();
        modifyTestElement(conn);
        conn.setComment(JMeterPluginsUtils.getWikiLinkText(WIKIPAGE));
        return conn;
    }

    @Override
    public void modifyTestElement(TestElement te) {
        super.configureTestElement(te);

        HBaseConnection con = (HBaseConnection) te;

        con.setZkName(connNameTF.getText());
        con.setZkHost(zkHostTF.getText());
        con.setName(getName());
        con.setComment(getComment());
    }

    //TODO typeCB
    public void configure(TestElement el) {
        super.configure(el);
        HBaseConnection con = (HBaseConnection) el;

        connNameTF.setText(con.getZkName());
        zkHostTF.setText(con.getZkHost());
        setName(con.getName());
        setComment(con.getComment());
    }

    //TODO typeCB
    public void clearGui() {
        super.clearGui();
        connNameTF.setText("");
        zkHostTF.setText("");
    }

    private JLabeledTextField createTF(String name) {
        JLabeledTextField tf = new JLabeledTextField(name);
        tf.setMaximumSize(new Dimension(10000, 26));
        tf.setBorder(new EmptyBorder(3, 0, 3, 0));
        tf.getComponents()[0].setPreferredSize(new Dimension(150, tf.getComponents()[0].getPreferredSize().height));
        return tf;
    }
}
TOP

Related Classes of com.atlantbh.jmeter.plugins.hbasecomponents.config.gui.HBaseConnectionGui

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.