Package javax.swing

Examples of javax.swing.GroupLayout$LinkInfo


  private JPanel createDestinationPane(Vector<String> fbNameList) {
    JPanel contentPane = new JPanel();
    TitledBorder destinationPaneBorder = new TitledBorder(" Destination ");
    destinationPaneBorder.setTitleFont(destinationPaneBorder.getTitleFont().deriveFont(new Float(10)));
    contentPane.setBorder(destinationPaneBorder);
    GroupLayout destinationLayout = new GroupLayout(contentPane);
    contentPane.setLayout(destinationLayout);

    JLabel fbLabel2 = new JLabel("Function Block");
    JLabel inputLabel = new JLabel("Input");
    JLabel separatorLabel3 = new JLabel(" : ");
    JLabel separatorLabel4 = new JLabel(" : ");
    destinationFBBox = new JComboBox(fbNameList);
    destinationFBBox.setSelectedIndex(fbNameList.size()-1);
    setComponentSize(destinationFBBox, fbBoxDimension);

    destinationFBBox.addActionListener(new ActionListener(){
      public void actionPerformed( ActionEvent evt){
        boolean isEvent = eventButton.isSelected();
        destinationInputBox.setModel(new DefaultComboBoxModel(
            getFBTypeComponentList(destinationFBBox.getSelectedItem().toString(),
                isEvent, true)));
      }
    });

    String destinationFBName = destinationFBBox.getSelectedItem().toString();
    Vector<String> inputList =
      getFBTypeComponentList(destinationFBName, eventButton.isSelected(), true);
    destinationInputBox = new JComboBox(inputList);
    setComponentSize(destinationInputBox, fbVariableDimension);

    destinationLayout.setHorizontalGroup(destinationLayout.createSequentialGroup()
        .addGroup(destinationLayout.createParallelGroup(CENTER)
            .addComponent(fbLabel2)
            .addComponent(destinationFBBox))
            .addGroup(destinationLayout.createParallelGroup(CENTER)
                .addComponent(separatorLabel3)
                .addComponent(separatorLabel4))
                .addGroup(destinationLayout.createParallelGroup(CENTER)
                    .addComponent(inputLabel)
                    .addComponent(destinationInputBox))
    );
    destinationLayout.setVerticalGroup(destinationLayout.createSequentialGroup()
        .addGroup(destinationLayout.createParallelGroup(LEADING)
            .addComponent(fbLabel2)
            .addComponent(separatorLabel3)
            .addComponent(inputLabel))
            .addGroup(destinationLayout.createParallelGroup(LEADING)
                .addComponent(destinationFBBox)
                .addComponent(separatorLabel4)
                .addComponent(destinationInputBox))
    );
    return contentPane;
View Full Code Here


  private JPanel createSourcePane(Vector<String> fbNameList) {
    JPanel contentPane = new JPanel();
    TitledBorder sourcePaneBorder = new TitledBorder(" Source ");
    sourcePaneBorder.setTitleFont(sourcePaneBorder.getTitleFont().deriveFont(new Float(10)));
    contentPane.setBorder(sourcePaneBorder);
    GroupLayout sourceLayout = new GroupLayout(contentPane);
    contentPane.setLayout(sourceLayout);

    JLabel fbLabel1 = new JLabel("Function Block");
    JLabel outputLabel = new JLabel("Output");
    JLabel separatorLabel1 = new JLabel(" : ");
    JLabel separatorLabel2 = new JLabel(" : ");

    sourceFBBox = new JComboBox(fbNameList);
    sourceFBBox.setSelectedIndex(0);
    setComponentSize(sourceFBBox, fbBoxDimension, fbVariableDimension);

    sourceFBBox.addActionListener(new ActionListener(){
      public void actionPerformed( ActionEvent evt){
        boolean isEvent = eventButton.isSelected();
        sourceOutputBox.setModel(new DefaultComboBoxModel(
            getFBTypeComponentList(sourceFBBox.getSelectedItem().toString(),
                isEvent, false)));
      }
    });
   
    Object selected = sourceFBBox.getSelectedItem();
    String sourceFBName = selected.toString();
    Vector<String> outputList = getFBTypeComponentList(sourceFBName, eventButton.isSelected(), false);

    System.out.println(outputList);
   
    sourceOutputBox = new JComboBox(outputList);
    //sourceOutputBox = new JComboBox();
    setComponentSize(sourceOutputBox, fbVariableDimension);

    sourceLayout.setHorizontalGroup(sourceLayout.createSequentialGroup()
        .addGroup(sourceLayout.createParallelGroup(CENTER)
            .addComponent(fbLabel1)
            .addComponent(sourceFBBox))
            .addGroup(sourceLayout.createParallelGroup(CENTER)
                .addComponent(separatorLabel1)
                .addComponent(separatorLabel2))
                .addGroup(sourceLayout.createParallelGroup(CENTER)
                    .addComponent(outputLabel)
                    .addComponent(sourceOutputBox))
    );
    sourceLayout.setVerticalGroup(sourceLayout.createSequentialGroup()
        .addGroup(sourceLayout.createParallelGroup(CENTER)
            .addComponent(fbLabel1)
            .addComponent(separatorLabel1)
            .addComponent(outputLabel))
            .addGroup(sourceLayout.createParallelGroup(CENTER)
                .addComponent(sourceFBBox)
                .addComponent(separatorLabel2)
                .addComponent(sourceOutputBox))
    );
    return contentPane;
View Full Code Here

            JLabel priceLabel  = new JLabel("Price :", SwingConstants.RIGHT);
            JLabel fromLabel   = new JLabel("from ", SwingConstants.RIGHT);
            JLabel toLabel     = new JLabel("to ", SwingConstants.RIGHT);

            JPanel panel = new JPanel();
            GroupLayout layout = new GroupLayout(panel);
            panel.setLayout(layout);
            layout.setAutoCreateContainerGaps(true);
            layout.setAutoCreateGaps(true);
            GroupLayout.SequentialGroup hGroup = layout.createSequentialGroup();
            hGroup.addGroup(layout.createParallelGroup()
                                  .addComponent(titleLabel)
                                  .addComponent(authorLabel)
                                  .addComponent(priceLabel));
            hGroup.addGroup(layout.createParallelGroup(GroupLayout.Alignment.CENTER)
                                  .addComponent(_title)
                                  .addComponent(_author)
                                  .addGroup(layout.createSequentialGroup()
                                          .addComponent(fromLabel)
                                          .addComponent(_minPrice)
                                          .addComponent(toLabel)
                                          .addComponent(_maxPrice)));
           
            GroupLayout.SequentialGroup vGroup = layout.createSequentialGroup();
            vGroup.addGroup(layout.createParallelGroup(GroupLayout.Alignment.CENTER)
                    .addComponent(titleLabel)
                    .addComponent(_title));
            vGroup.addGroup(layout.createParallelGroup(GroupLayout.Alignment.CENTER)
                    .addComponent(authorLabel)
                    .addComponent(_author));
            vGroup.addGroup(layout.createParallelGroup(GroupLayout.Alignment.CENTER)
                    .addComponent(priceLabel)
                    .addComponent(fromLabel)
                    .addComponent(_minPrice)
                    .addComponent(toLabel)
                    .addComponent(_maxPrice));
           
            layout.setHorizontalGroup(hGroup);
            layout.setVerticalGroup(vGroup);

            JButton searchButton = new JButton("Search", Images.SEARCH);
            searchButton.setHorizontalTextPosition(SwingConstants.LEADING);
            ShowCodeAction showCode = Demo.getInstance().new ShowCodeAction();
            showCode.setPage("Dynamic Query", "openbook/server/OpenBookServiceImpl.java.html#buildQuery");
View Full Code Here

    setResizable(false);
   
    // prepare a group layout for the whole dialog
    Container contentPane = this.getContentPane();
   
    GroupLayout layout = new GroupLayout(contentPane);
    contentPane.setLayout(layout);
   
    layout.setAutoCreateContainerGaps(true);
    layout.setAutoCreateGaps(true);
 
    // create the panel to which all configuration cards will be attached
    areaConfigurationPanel = new JPanel();
   
    destinationConfigurationPanel = new DestinationAreaConfigurationPanel();
    sourceConfigurationPanel = new SourceAreaConfigurationPanel();
   
    areaSelectionCardLayout = new CardLayout();
    areaConfigurationPanel.setLayout(areaSelectionCardLayout);
   
    areaConfigurationPanel.add(sourceConfigurationPanel, SOURCE_CONFIGURATION_CARD);
    areaConfigurationPanel.add(destinationConfigurationPanel, DESTINATION_CONFIGURATION_CARD);
    areaConfigurationPanel.add(prepareUnselectedPanelCard(), NO_SELECTION_CARD);
    areaConfigurationPanel.setAlignmentX(CENTER_ALIGNMENT)
   
    // create the confirmation button
    JButton confirmationButton = new JButton("Ok");
    confirmationButton.setAlignmentX(RIGHT_ALIGNMENT);
    confirmationButton.setPreferredSize(new Dimension(150, confirmationButton.getPreferredSize().height));
    confirmationButton.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent arg0) {
        setVisible(false);
      }
    });
   
    Component buttonBarGlue = Box.createHorizontalGlue();
   
    // put the configuration panel and the confirmation button onto the dialog
    layout.setHorizontalGroup(
        layout.createParallelGroup()
          .addComponent(areaConfigurationPanel)
          .addGroup(layout.createSequentialGroup()
              .addComponent(buttonBarGlue)
              .addComponent(confirmationButton)
          )
    );
   
    layout.setVerticalGroup(
        layout.createSequentialGroup()
          .addComponent(areaConfigurationPanel)
          .addGroup(layout.createParallelGroup()
              .addComponent(buttonBarGlue)
              .addComponent(confirmationButton)
          )
    );
   
View Full Code Here

      public void actionPerformed(ActionEvent e) {
        core.setAudioNotify(audioNotify.isSelected());
      }
    });
   
    GroupLayout gl_contentPane = new GroupLayout(contentPane);
    gl_contentPane.setHorizontalGroup(
      gl_contentPane.createParallelGroup(Alignment.LEADING)
        .addGroup(gl_contentPane.createSequentialGroup()
          .addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING)
            .addGroup(gl_contentPane.createSequentialGroup()
              .addGap(7)
              .addComponent(lblStartSharing)
              .addGap(15)
              .addComponent(audioNotify))
            .addGroup(gl_contentPane.createSequentialGroup()
              .addGap(21)
              .addComponent(btnStartStopSharing, 200, 200, 200)
              .addGap(52)
              )
            .addGroup(gl_contentPane.createSequentialGroup()
              .addGap(7)
              .addComponent(lblSelectArea, GroupLayout.PREFERRED_SIZE, 470, GroupLayout.PREFERRED_SIZE))
            .addGroup(gl_contentPane.createSequentialGroup()
              .addContainerGap()
              .addComponent(panelScreen, GroupLayout.PREFERRED_SIZE, 472, GroupLayout.PREFERRED_SIZE))
            .addGroup(gl_contentPane.createSequentialGroup()
              .addContainerGap()
              .addComponent(tabbedPane, GroupLayout.PREFERRED_SIZE, 472, GroupLayout.PREFERRED_SIZE))
            .addGroup(gl_contentPane.createSequentialGroup()
              .addComponent(panelStatus, 494, 494, 494)))
          .addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
    );
    gl_contentPane.setVerticalGroup(
      gl_contentPane.createParallelGroup(Alignment.LEADING)
        .addGroup(gl_contentPane.createSequentialGroup()
          .addGap(7)
          .addComponent(lblStartSharing)
          .addGap(4)
          .addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING)
            .addComponent(btnStartStopSharing, 32, 32, 32).addComponent(audioNotify, 32, 32, 32)
            )
          .addGap(4)
          .addComponent(lblSelectArea)
          .addGap(4)
View Full Code Here

        textArea.setEditable(false);
        jScrollPane1 = new JScrollPane(textArea);
        jLabel1.setText("Enter text to search:");
        GroupLayout layout = new GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        
    //Create a parallel group for the horizontal axis
    ParallelGroup hGroup = layout.createParallelGroup(GroupLayout.Alignment.LEADING);
    
    //Create a sequential and a parallel groups
    SequentialGroup h1 = layout.createSequentialGroup();
    ParallelGroup h2 = layout.createParallelGroup(GroupLayout.Alignment.TRAILING);
    
    //Add a container gap to the sequential group h1
    h1.addContainerGap();
    
    //Add a scroll pane and a label to the parallel group h2
    h2.addComponent(jScrollPane1, GroupLayout.Alignment.LEADING, GroupLayout.DEFAULT_SIZE, 450, Short.MAX_VALUE);
    h2.addComponent(status, GroupLayout.Alignment.LEADING, GroupLayout.DEFAULT_SIZE, 450, Short.MAX_VALUE);
    
    //Create a sequential group h3
    SequentialGroup h3 = layout.createSequentialGroup();
    h3.addComponent(jLabel1);
    h3.addPreferredGap(LayoutStyle.ComponentPlacement.RELATED);
    h3.addComponent(entry, GroupLayout.DEFAULT_SIZE, 321, Short.MAX_VALUE);
     
    //Add the group h3 to the group h2
    h2.addGroup(h3);
    //Add the group h2 to the group h1
    h1.addGroup(h2);
    h1.addContainerGap();
    
    //Add the group h1 to the hGroup
    hGroup.addGroup(GroupLayout.Alignment.TRAILING, h1);
    //Create the horizontal group
    layout.setHorizontalGroup(hGroup);
    
        
    //Create a parallel group for the vertical axis
    ParallelGroup vGroup = layout.createParallelGroup(GroupLayout.Alignment.LEADING);
    //Create a sequential group v1
    SequentialGroup v1 = layout.createSequentialGroup();
    //Add a container gap to the sequential group v1
    v1.addContainerGap();
    //Create a parallel group v2
    ParallelGroup v2 = layout.createParallelGroup(GroupLayout.Alignment.BASELINE);
    v2.addComponent(jLabel1);
    v2.addComponent(entry, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE);
    //Add the group v2 tp the group v1
    v1.addGroup(v2);
    v1.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED);
    v1.addComponent(jScrollPane1, GroupLayout.DEFAULT_SIZE, 233, Short.MAX_VALUE);
    v1.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED);
    v1.addComponent(status);
    v1.addContainerGap();
    
    //Add the group v1 to the group vGroup
    vGroup.addGroup(v1);
    //Create the vertical group
    layout.setVerticalGroup(vGroup);
    pack();
    }
View Full Code Here

                    logout();
                }
            }
        });

        GroupLayout layout = new GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addComponent(mdiPanel, javax.swing.GroupLayout.DEFAULT_SIZE, 752, Short.MAX_VALUE)
            .addComponent(jPanel1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                .addComponent(mdiPanel, javax.swing.GroupLayout.DEFAULT_SIZE, 602, Short.MAX_VALUE)
                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
        );
View Full Code Here

        loginText = new JTextField();
        userLabel = new JLabel();
        passwordText = new JPasswordField();
        passwordLabel = new JLabel();

        GroupLayout myBottomLayout = new GroupLayout(wallpaper);
        wallpaper.setLayout(myBottomLayout);
        myBottomLayout.setHorizontalGroup(
            myBottomLayout.createParallelGroup(GroupLayout.Alignment.LEADING)
            .addGroup(myBottomLayout.createSequentialGroup()
                .addGap(41, 41, 41)
                .addGroup(myBottomLayout.createParallelGroup(GroupLayout.Alignment.LEADING, false)
                    .addComponent(passwordLabel, GroupLayout.Alignment.TRAILING, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addComponent(userLabel, GroupLayout.Alignment.TRAILING))
                .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                .addGroup(myBottomLayout.createParallelGroup(GroupLayout.Alignment.LEADING, false)
                    .addComponent(loginText)
                    .addComponent(passwordText, GroupLayout.PREFERRED_SIZE, 147, GroupLayout.PREFERRED_SIZE))
                .addContainerGap(413, Short.MAX_VALUE))
        );

        loginText.addKeyListener(new java.awt.event.KeyAdapter() {
            public void keyPressed(java.awt.event.KeyEvent evt) {
                if ( evt.getKeyCode() == KeyEvent.VK_ENTER ){
                    passwordText.requestFocus();
                }
            }
        });

        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        setTitle(Constants.appName);

        userLabel.setFont(new Font("Courier New", 0, 12));
        userLabel.setHorizontalAlignment(SwingConstants.CENTER);
        userLabel.setIcon(new ImageIcon(getClass().getResource("/totalpos/resources/Etiquetas.jpg"))); // NOI18N
        userLabel.setText("Usuario");
        userLabel.setHorizontalTextPosition(SwingConstants.CENTER);
        userLabel.setIconTextGap(0);

        passwordText.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
                passwordTextActionPerformed(evt);
            }
        });

        passwordLabel.setFont(new Font("Courier New", 0, 12));
        passwordLabel.setIcon(new ImageIcon(getClass().getResource("/totalpos/resources/Etiquetas.jpg"))); // NOI18N
        passwordLabel.setText("Contraseña");
        passwordLabel.setHorizontalTextPosition(SwingConstants.CENTER);

        myBottomLayout.setVerticalGroup(
            myBottomLayout.createParallelGroup(GroupLayout.Alignment.LEADING)
            .addGroup(GroupLayout.Alignment.TRAILING, myBottomLayout.createSequentialGroup()
                .addContainerGap(396, Short.MAX_VALUE)
                .addGroup(myBottomLayout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                    .addComponent(userLabel)
                    .addComponent(loginText, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
                .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                .addGroup(myBottomLayout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                    .addComponent(passwordLabel)
                    .addComponent(passwordText, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
                .addGap(78, 78, 78))
        );

        GroupLayout layout = new GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(GroupLayout.Alignment.LEADING)
            .addComponent(wallpaper, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(GroupLayout.Alignment.LEADING)
            .addComponent(wallpaper, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
        );

        pack();
View Full Code Here

/*  77 */     appDescLabel.setName("appDescLabel");
/*     */
/*  79 */     imageLabel.setIcon(resourceMap.getIcon("imageLabel.icon"));
/*  80 */     imageLabel.setName("imageLabel");
/*     */
/*  82 */     GroupLayout layout = new GroupLayout(getContentPane());
/*  83 */     getContentPane().setLayout(layout);
/*  84 */     layout.setHorizontalGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(layout.createSequentialGroup().addComponent(imageLabel).addGap(18, 18, 18).addGroup(layout.createParallelGroup(GroupLayout.Alignment.TRAILING).addGroup(GroupLayout.Alignment.LEADING, layout.createSequentialGroup().addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addComponent(versionLabel).addComponent(vendorLabel).addComponent(homepageLabel)).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addComponent(appVersionLabel).addComponent(appVendorLabel).addComponent(appHomepageLabel))).addComponent(appTitleLabel, GroupLayout.Alignment.LEADING).addComponent(appDescLabel, GroupLayout.Alignment.LEADING, -1, 266, 32767).addComponent(this.closeButton)).addContainerGap()));
/*     */
/* 105 */     layout.setVerticalGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING).addComponent(imageLabel, -2, -1, 32767).addGroup(layout.createSequentialGroup().addContainerGap().addComponent(appTitleLabel).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addComponent(appDescLabel, -2, -1, -2).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE).addComponent(versionLabel).addComponent(appVersionLabel)).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE).addComponent(vendorLabel).addComponent(appVendorLabel)).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE).addComponent(homepageLabel).addComponent(appHomepageLabel)).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED, 19, 32767).addComponent(this.closeButton).addContainerGap()));
/*     */
/* 130 */     pack();
/*     */   }
View Full Code Here

/* 154 */     this.bntClear.addActionListener(new ActionListener() {
/*     */       public void actionPerformed(ActionEvent evt) {
/* 156 */         ClipTartView.this.bntClearActionPerformed(evt);
/*     */       }
/*     */     });
/* 160 */     GroupLayout mainPanelLayout = new GroupLayout(this.mainPanel);
/* 161 */     this.mainPanel.setLayout(mainPanelLayout);
/* 162 */     mainPanelLayout.setHorizontalGroup(mainPanelLayout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(GroupLayout.Alignment.TRAILING, mainPanelLayout.createSequentialGroup().addContainerGap().addGroup(mainPanelLayout.createParallelGroup(GroupLayout.Alignment.TRAILING).addComponent(this.jScrollPane1, GroupLayout.Alignment.LEADING, -1, 380, 32767).addGroup(mainPanelLayout.createSequentialGroup().addComponent(this.btnCopy).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addComponent(this.bntClear).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addComponent(this.btnHelp))).addContainerGap()));
/*     */
/* 176 */     mainPanelLayout.setVerticalGroup(mainPanelLayout.createParallelGroup(GroupLayout.Alignment.LEADING).addGroup(mainPanelLayout.createSequentialGroup().addContainerGap().addGroup(mainPanelLayout.createParallelGroup(GroupLayout.Alignment.BASELINE).addComponent(this.btnHelp).addComponent(this.btnCopy).addComponent(this.bntClear)).addPreferredGap(LayoutStyle.ComponentPlacement.RELATED).addComponent(this.jScrollPane1, -1, 66, 32767).addContainerGap()));
/*     */
/* 189 */     setComponent(this.mainPanel);
/*     */   }
View Full Code Here

TOP

Related Classes of javax.swing.GroupLayout$LinkInfo

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.