/*
* UI_TTE_TeamSet.java
*
* Created on 4 2008 ., 9:37
*/
package fgen.ui;
/**
*
* @author Oleg Rachaev
*/
public class UI_TTE_TeamSet extends javax.swing.JPanel {
/** Creates new form UI_TTE_TeamSet */
public UI_TTE_TeamSet() {
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() {
jScrollPane1 = new javax.swing.JScrollPane();
jTree1 = new javax.swing.JTree();
setLayout(null);
jScrollPane1.setViewportView(jTree1);
add(jScrollPane1);
jScrollPane1.setBounds(80, 40, 260, 250);
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JTree jTree1;
// End of variables declaration//GEN-END:variables
}
|