Package org.apache.jmeter.gui

Examples of org.apache.jmeter.gui.NamePanel


  /**
   *
   */
  public AbstractReportGui() {
        this.namePanel = new NamePanel();
        this.namePanel.setBackground(Color.white);
        setName(getStaticLabel());
  }
View Full Code Here


{
  /**
   *
   */
  public AbstractReportGui() {
        this.namePanel = new NamePanel();
        this.namePanel.setBackground(Color.white);
        setName(getStaticLabel());
  }
View Full Code Here

  /****************************************
   * !ToDo (Constructor description)
   ***************************************/
  public ProxyControlGui()
  {
    namePanel = new NamePanel();
    setName(getStaticLabel());
    init();
  }
View Full Code Here

  /****************************************
   * !ToDo (Constructor description)
   ***************************************/
  public JMeterTreeModel()
  {
    super(new JMeterTreeNode(new NamePanel()));
    this.insertNodeInto(new JMeterTreeNode(new TestPlanGui()),
        (JMeterTreeNode)getRoot(), 0);
    this.insertNodeInto(new JMeterTreeNode(new WorkBenchGui()),
        (JMeterTreeNode)getRoot(), 1);
  }
View Full Code Here

  /****************************************
   * !ToDo (Constructor description)
   ***************************************/
  public WorkBenchGui()
  {
    namePanel = new NamePanel();
    setName(getStaticLabel());
    init();
  }
View Full Code Here

    curFontSize += 4;
    panelTitleLabel.setFont(new Font(curFont.getFontName(), curFont.getStyle(), curFontSize));
    mainPanel.add(panelTitleLabel);

    // NAME
    namePanel = new NamePanel();
    mainPanel.add(namePanel);

    this.add(mainPanel);
  }
View Full Code Here

    curFontSize += 4;
    panelTitleLabel.setFont(new Font(curFont.getFontName(), curFont.getStyle(), curFontSize));
    mainPanel.add(panelTitleLabel);

    // NAME
    namePanel = new NamePanel();
    mainPanel.add(namePanel);

    // THREAD PROPERTIES
    JPanel threadPropsPanel = new JPanel();
    margin = new EmptyBorder(5, 10, 10, 10);
View Full Code Here

TOP

Related Classes of org.apache.jmeter.gui.NamePanel

Copyright © 2018 www.massapicom. 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.