blob: 505c4630687692784dbf9d2f3b03984e0561efc4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.java.disco;
public class FirstPanel extends javax.swing.JPanel {
public FirstPanel() {
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.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
javax.swing.JPanel jPanel1 = new javax.swing.JPanel();
loadingLabel = new javax.swing.JLabel();
tabs = new javax.swing.JTabbedPane();
setLayout(new java.awt.CardLayout());
jPanel1.setLayout(new java.awt.BorderLayout());
loadingLabel.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
org.openide.awt.Mnemonics.setLocalizedText(loadingLabel, org.openide.util.NbBundle.getMessage(FirstPanel.class, "FirstPanel.loadingLabel.text")); // NOI18N
jPanel1.add(loadingLabel, java.awt.BorderLayout.CENTER);
add(jPanel1, "card3");
add(tabs, "card2");
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
protected javax.swing.JLabel loadingLabel;
protected javax.swing.JTabbedPane tabs;
// End of variables declaration//GEN-END:variables
}