Package com.arjuna.ats.tools.toolsframework.components

Examples of com.arjuna.ats.tools.toolsframework.components.TextButton


    gbc.insets.bottom = 0;
    gbl.setConstraints(_description, gbc);
    this.add(_description);

    /** Add View attributes and methods text button **/
    TextButton viewButton = new TextButton(VIEW_BUTTON_TEXT, DetailPanel.NORMAL_COLOR, DetailPanel.OVER_COLOR, DetailPanel.DOWN_COLOR);
    _hideableComponents.add(viewButton);
    viewButton.setVisible(false);
    label.setFont(label.getFont().deriveFont(Font.PLAIN));
    gbc.gridx = 0;
    gbc.gridy = 7;
    gbc.fill = GridBagConstraints.NONE;
    gbc.gridwidth = 1;
    gbc.insets.top = 0;
    gbc.insets.left = 10;
    gbc.insets.right = 10;
    gbc.insets.bottom = 10;
    gbl.setConstraints(viewButton, gbc);
    this.add(viewButton);

    viewButton.addActionListener(this);
  }
View Full Code Here

TOP

Related Classes of com.arjuna.ats.tools.toolsframework.components.TextButton

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.