/************************************************************************** OmegaT - Computer Assisted Translation (CAT) tool with fuzzy matching, translation memory, keyword search, glossaries, and translation leveraging into updated projects. Copyright (C) 2016 Alex Buloichick Home page: http://www.omegat.org/ Support center: http://groups.yahoo.com/group/OmegaT/ This file is part of OmegaT. OmegaT is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OmegaT is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. **************************************************************************/ package org.omegat.core.team2.gui; import org.omegat.util.OStrings; /** * @author Alex Buloichik (alex73mail@gmail.com) * @author Aaron Madlon-Kay */ @SuppressWarnings("serial") public class RepositoriesCredentialsPanel extends javax.swing.JPanel { /** * Creates new form RepositoriesCredentialsPanel */ public RepositoriesCredentialsPanel() { initComponents(); } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jScrollPane2 = new javax.swing.JScrollPane(); list = new javax.swing.JTable(); jPanel2 = new javax.swing.JPanel(); btnRemove = new javax.swing.JButton(); filler1 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 32767)); setBorder(javax.swing.BorderFactory.createEmptyBorder(10, 10, 10, 10)); setMinimumSize(new java.awt.Dimension(300, 200)); setLayout(new javax.swing.BoxLayout(this, javax.swing.BoxLayout.LINE_AXIS)); list.setFillsViewportHeight(true); list.setSelectionMode(javax.swing.ListSelectionModel.SINGLE_SELECTION); list.setTableHeader(null); jScrollPane2.setViewportView(list); add(jScrollPane2); jPanel2.setLayout(new javax.swing.BoxLayout(jPanel2, javax.swing.BoxLayout.PAGE_AXIS)); org.openide.awt.Mnemonics.setLocalizedText(btnRemove, OStrings.getString("BUTTON_REMOVE")); // NOI18N btnRemove.setEnabled(false); jPanel2.add(btnRemove); jPanel2.add(filler1); add(jPanel2); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables public javax.swing.JButton btnRemove; public javax.swing.Box.Filler filler1; public javax.swing.JPanel jPanel2; public javax.swing.JScrollPane jScrollPane2; public javax.swing.JTable list; // End of variables declaration//GEN-END:variables }