Search Results
OK to copy?
Examples 1 through 10 of
323 (1.7359999999999998 seconds)
jgoodies_looks
Class:
com.jgoodies.looks.windows.WindowsOptionPaneUI
©,
Rating:
100% of 1,
C1
jgoodies_looks Class: com.jgoodies.looks.plastic.PlasticOptionPaneUI ©, Rating: 100% of 1, C1
Class: org.apache.jmeter.gui.util.HorizontalPanel ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.gui.util.VerticalPanel ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.gui.OnErrorPanel ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.gui.OnErrorPanel ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.protocol.http.control.gui.SoapSamplerGui ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.assertions.gui.MD5HexAssertionGUI ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.protocol.jdbc.control.gui.JdbcTestSampleGui ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.protocol.jdbc.config.gui.SqlConfigGui ©, Rating: 0% of 0, C1
60 */
61 protected Container createButtonArea() {
62 JPanel bottom = new JPanel(new ExtButtonAreaLayout(true, 6));
63 bottom.setBorder(UIManager.getBorder("OptionPane.buttonAreaBorder"));
64 addButtonComponents(bottom, getButtons(), getInitialValueIndex());
jgoodies_looks Class: com.jgoodies.looks.plastic.PlasticOptionPaneUI ©, Rating: 100% of 1, C1
61 */
62 protected Container createButtonArea() {
63 JPanel bottom = new JPanel(new ExtButtonAreaLayout(true, 6));
64 bottom.setBorder(UIManager.getBorder("OptionPane.buttonAreaBorder"));
65 addButtonComponents(bottom, getButtons(), getInitialValueIndex());
Class: org.apache.jmeter.gui.util.HorizontalPanel ©, Rating: 0% of 0, C1
47 public HorizontalPanel(int hgap, float verticalAlign)
48 {
49 super(new BorderLayout());
50 add(subPanel, BorderLayout.WEST);
51 this.hgap = hgap;
Class: org.apache.jmeter.gui.util.VerticalPanel ©, Rating: 0% of 0, C1
49 public VerticalPanel(int vgap, float horizontalAlign)
50 {
51 super(new BorderLayout());
52 add(subPanel,BorderLayout.NORTH);
53 this.vgap = vgap;
Class: org.apache.jmeter.gui.OnErrorPanel ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.gui.OnErrorPanel ©, Rating: 0% of 0, C1
41 private JPanel createOnErrorPanel()
42 {
43 JPanel panel = new JPanel();
44 panel.setBorder(
45 BorderFactory.createTitledBorder(
Class: org.apache.jmeter.protocol.http.control.gui.SoapSamplerGui ©, Rating: 0% of 0, C1
087 null);
088
089 JPanel mainPanel = new JPanel(new BorderLayout());
090 mainPanel.add(urlField, BorderLayout.NORTH);
091 mainPanel.add(soapXml, BorderLayout.CENTER);
Class: org.apache.jmeter.assertions.gui.MD5HexAssertionGUI ©, Rating: 0% of 0, C1
053 add(makeTitlePanel(), BorderLayout.NORTH);
054
055 JPanel mainPanel = new JPanel(new BorderLayout());
056
057 // USER_INPUT
Class: org.apache.jmeter.protocol.jdbc.control.gui.JdbcTestSampleGui ©, Rating: 0% of 0, C1
087 add(makeTitlePanel(), BorderLayout.NORTH);
088
089 JPanel mainPanel = new JPanel(new BorderLayout(0, 5));
090
091 VerticalPanel connPanel = new VerticalPanel();
Class: org.apache.jmeter.protocol.jdbc.config.gui.SqlConfigGui ©, Rating: 0% of 0, C1
114 label.setLabelFor(sqlField);
115
116 JPanel panel = new JPanel(new BorderLayout());
117 panel.add(label, BorderLayout.NORTH);
118 panel.add(new JScrollPane(sqlField), BorderLayout.CENTER);