gov.nih.nlm.nls.lvg.Tools.GuiTool.GuiComp.OkResetButtonPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lvg2010dist Show documentation
Show all versions of lvg2010dist Show documentation
LVG tools is used by Apache cTAKES.
The newest version!
package GuiTool.GuiComp;
import java.awt.*;
import javax.swing.*;
import GuiTool.GuiLib.*;
public class OkResetButtonPanel extends JPanel
{
public OkResetButtonPanel()
{
okB_ = new JButton("Ok");
resetB_ = new JButton("Reset");
GridBagLayout gbl = new GridBagLayout();
setLayout(gbl);
GridBagConstraints gbc = new GridBagConstraints();
gbc.fill = GridBagConstraints.NONE;
gbc.anchor = GridBagConstraints.CENTER;
gbc.insets = new Insets(20, 5, 5, 5); //Pad: Top, Left, Bottom, Right
GridBag.SetWeight(gbc, 0, 100);
GridBag.SetPosSize(gbc, 0, 0, 1, 1);
add(okB_, gbc);
GridBag.SetPosSize(gbc, 2, 0, 1, 1);
add(resetB_, gbc);
}
public JButton GetOkButton()
{
return okB_;
}
public JButton GetResetButton()
{
return resetB_;
}
public static void main(String[] args)
{
JFrame frame = new LibCloseableFrame("OkReset Panel");
frame.getContentPane().add(new OkResetButtonPanel(), "South");
frame.setSize(300, 200);
frame.setVisible(true);
}
// data members
private JButton okB_ = null;
private JButton resetB_ = null;
private final static long serialVersionUID = 5L;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy