Muy nuevo en java, y no puedo mostrar un jpanel dentro de un jframe, o no es la manera correcta de hacerlo????

Estoy tratando de realizar una aplicacion sencilla (para ir aprendiendo), con un jframe principal, y de acuerdo a la opcion de menu que seleccione, mostrar un jpanel para ingresar datos, por ej.: si elijo alta de servicio, que me aparezcan dentro del jframe los campos y botones para ingresar los datos del servicio a dar de alta, (no se si me explico bien), pero no doy pie con bola, a lo mejor no es la manera correcta de hacer esto, si alguien me puede echar una mano y un poco de luz a esto le estare agradecido.-

un saludo desde la Bicentenaria Argentina.-

Opciones de visualización de comentarios

Seleccione la forma que prefiera para mostrar los comentarios y haga clic en «Guardar las opciones» para activar los cambios.

@ElMensu

Puedes escribir el código que llevas? Es probable que tu problema sea muy sencillo y baste con una línea de código o es probable que estes totalmente lejos de la solución, pero si no escribes tu código pues jamás lo sabremos.

Postealo y quizá te pueda echar una mano.

Imagen de ElMensu

Hola Oscar, este es el

Hola Oscar, este es el código del JFrame que pretende mostrar el Panel:

package alphacon;
import java.awt.*;
import javax.swing.JPanel.*;
import java.awt.event.*;

/**
*
* @author joselo
*/
public class jfPrincipal extends javax.swing.JFrame {

/** Creates new form jfPrincipal */
public jfPrincipal() {
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")
//
private void initComponents() {

jMenuBar1 = new javax.swing.JMenuBar();
jMenu1 = new javax.swing.JMenu();
jMenu2 = new javax.swing.JMenu();
jMenuItem2 = new javax.swing.JMenuItem();
jMenu3 = new javax.swing.JMenu();
jMenu4 = new javax.swing.JMenu();
jSeparator1 = new javax.swing.JPopupMenu.Separator();
jSeparator3 = new javax.swing.JPopupMenu.Separator();
jMenuItem1 = new javax.swing.JMenuItem();

setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setTitle("Sistema de Gestión de Gastos del Hogar");
setName("jfPrincipal"); // NOI18N
setResizable(false);

jMenu1.setText("Archivos");

jMenu2.setText("Servicios");

jMenuItem2.setText("Alta");
jMenuItem2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jMenuItem2ActionPerformed(evt);
}
});
jMenu2.add(jMenuItem2);

jMenu1.add(jMenu2);

jMenu3.setText("jMenu3");
jMenu1.add(jMenu3);

jMenu4.setText("jMenu4");
jMenu4.add(jSeparator1);

jMenu1.add(jMenu4);
jMenu1.add(jSeparator3);

jMenuItem1.setText("Salir");
jMenuItem1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jMenuItem1ActionPerformed(evt);
}
});
jMenu1.add(jMenuItem1);

jMenuBar1.add(jMenu1);

setJMenuBar(jMenuBar1);

javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 873, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 563, Short.MAX_VALUE)
);

getAccessibleContext().setAccessibleName("jfPrincipal");

pack();
}//

private void jMenuItem1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
System.exit(0);
}

private void jMenuItem2ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
System.out.print("Pasa");
pServ = new servicios();
pServ.setLayout( new GridLayout( 1, 2 ) );
pServ.setVisible(true);
add("South", pServ );

}

/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new jfPrincipal().setVisible(true);
}
});
}

// Variables declaration - do not modify
private javax.swing.JMenu jMenu1;
private javax.swing.JMenu jMenu2;
private javax.swing.JMenu jMenu3;
private javax.swing.JMenu jMenu4;
private javax.swing.JMenuBar jMenuBar1;
private javax.swing.JMenuItem jMenuItem1;
private javax.swing.JMenuItem jMenuItem2;
private javax.swing.JPopupMenu.Separator jSeparator1;
private javax.swing.JPopupMenu.Separator jSeparator3;
// End of variables declaration
private javax.swing.JPanel pServ;
}

y este es el código del JPanel:

package alphacon;

/**
*
* @author joselo
*/
public class servicios extends javax.swing.JPanel {

/** Creates new form servicios */
public servicios() {
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")
//
private void initComponents() {

setBackground(new java.awt.Color(204, 255, 204));

javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 400, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 300, Short.MAX_VALUE)
);
}//

// Variables declaration - do not modify
// End of variables declaration

}

Realmente no se si esto funciona asi, mi idea es tener una aplicación que al seleccionar un item de un menu, me muestre campos de texto, botones, opciones, etc. para poder ingresar datos, desde ya muy agradecido...
un saludo desde Argetina Bicentenaria.-

Imagen de ArenasMx

dimensiones del jframe

puede que sea una observación algo obvia, puede que me equivoque pero he leido tu código y no veo en que parte se define el tamaño del jframe???'

Ya veo.

Primero las criticas:

1.- Por convención en Java el nombre de las clases debe de empezar con mayúsculas, asi jfPrincipal, debería de ser Jfprincipal ( o JFPrincipal )
2.- Y ya.. fin de criticas :P

Están pasando un par de cosas que en combinación hacen que no se vea nada en tu frame.

La primera y más importante es que estás cambiando ( o tu gui builder lo está haciendo ) el layout manager, por uno con   que no te está ayudando mucho.

Por ejemplo intenté poner algo como:   en el frame y no lo muestra.

Si comentas la linea 66:   se usara al layout manager por default y esa simple JLabel se podrá ver.

La segunda: Cuando reaccionas al evento, pones tu panel "servicios" ( que debe de llamarse Servicios ) pero como tu panel no tiene nada, nada se muestra (la manera en la que funciona Swing, es que, se le da la oportunidad a cada componente de que "dibujen" su contenido. Si su contenido es nada, no dibujan nada )

Entonces para solucionar esto, basta con poner un componente ahi listo ( por ejemplo yo le puse un   que dice "pServ" )

Tercero: Que no es nada obvio, es, cuando vas a agregar un componente a un elemento que ya está visible, tienes que volver a pintarlo todo.

Es decir, cuando reaccionas al evento de "Alta", el Frame ya está pintado; entonces, aunque le agregues el panel, no lo va a pintar, por que ese proceso ya paso.

Lo que tienes que hacer para forzarlo es volverlo a pintar, lo cual sucede automáticamente cuando le cambias el tamaño a tu frame, pero como tienes la propiedad está   no lo podias ver.

La otra opción es que llames al método   de JFrame y ese le dice al frame "Vuelvelo a pintar todo"

Y listo, al final con esos tres cambios, se vería así:


Uploaded with ImageShack.us

En términos generales es mejor dejar que el contenido del frame le den el tamaño deseado. Es decir, si tienes un panel con muchos botones y cosas que mide digamos 300x600, lo mejor es no forzar el tamaño del frame y llamar al método pack ( como lo estás haciendo ) lo cual va a ajustar el tamaño del frame a ese tamaño ( más menos pixeles de borde )

El problema está en el tamaño inicial del frame, cuando esta en blanco.

Puedes usar el método "setSize(width, height ) " de frame para poner el tamaño inicial de tu frame, pero si llamas al método pack, este cambiara al la forma conpacta.

p.d. Investiga el layout manager "CardLayout" que se usa para este tipo de cosas y la siguiente vez que necesites escribir código usa las marcas <code> y </code> ;)

Imagen de ElMensu

Gracias...

Muchas gracias Oscar, voy a intentar con los recomendaciones que me hiciste, luego te comento que paso...
un saludo...

Imagen de ElMensu

Oscar: antes que nada un

Oscar: antes que nada un saludo, te cuento que probe los cambios que me recomendaste, tuve que agregar una sola linea, pero anduvo, ahora estube probando con el GroupLayout, a ese le entendi bastante mejor, me parece que voy a utilizar esa tecnologia, de nuevo muchas gracias, y espero que sigamos en contacto, tengo muchisimo por aprender todavia.-
un gran saludo.-

Si, el grouplayout es muy

Si, el grouplayout es muy bueno ( aunque no como lo estabas usando )

Que bueno que te pude ayudar.

Saludos.

Imagen de jhon_constantin

BUEN DIA OSCAR: LO QUE PASA

BUEN DIA OSCAR: LO QUE PASA QUE SOY NUEVO EN JAVA Y TENGO UNPEQUEÑO PROBLEMA , TRATO DE HACER UNA INSERCION JFRAME Y LO HACE, PERO ME MARCA ERRO EL LAS LIBRERIA NO SE SI ME PUEDES AYUDAR TE LO AGRADECERIA Y ESTE ES EL CODIJO:
package conexionbd;
import java.sql.Connection;
import java.sql.Statement;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.DatabaseMetaData;
import java.sql. ResultSetMetaData;
import java.sql.SQLException;
import java.util.Scanner;
public class insetrar extends javax.swing.JFrame {

static final String DRIVER="com.mysql.jdbc.Driver";
static final String url="jdbc:mysql://localhost/books";
/**
*
* @author Luis
*/

/** Creates new form insetrar */
public insetrar() {
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")
//
private void initComponents() {

jLabel4 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jTextField1 = new javax.swing.JTextField();
jLabel2 = new javax.swing.JLabel();
jButton2 = new javax.swing.JButton();
jTextField3 = new javax.swing.JTextField();
jLabel1 = new javax.swing.JLabel();
jTextField4 = new javax.swing.JTextField();
jButton1 = new javax.swing.JButton();
jLabel5 = new javax.swing.JLabel();
jTextField2 = new javax.swing.JTextField();
jButton3 = new javax.swing.JButton();
jLabel6 = new javax.swing.JLabel();
jTextField5 = new javax.swing.JTextField();
jTextField6 = new javax.swing.JTextField();
jLabel7 = new javax.swing.JLabel();

setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

jLabel4.setText("FirstName");

jLabel3.setText("AuthorID");

jTextField1.setBackground(new java.awt.Color(153, 255, 255));

jLabel2.setText("AuthorID");

jButton2.setText("Salir");
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
});

jTextField3.setBackground(new java.awt.Color(102, 255, 102));

jLabel1.setText("Consulta individual por AuthorID");

jTextField4.setBackground(new java.awt.Color(102, 255, 102));

jButton1.setText("Buscar");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});

jLabel5.setText("LastName");

jTextField2.setBackground(new java.awt.Color(102, 255, 102));

jButton3.setText("insertar");
jButton3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton3ActionPerformed(evt);
}
});

jLabel6.setText("lastname");

jTextField6.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField6ActionPerformed(evt);
}
});

jLabel7.setText("firstname");

javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 614, Short.MAX_VALUE)
.addGroup(layout.createSequentialGroup()
.addGap(141, 141, 141)
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 195, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(278, Short.MAX_VALUE))
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addGap(102, 102, 102)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jLabel2)
.addGap(42, 42, 42)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 148, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(67, 67, 67))
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel7)
.addComponent(jLabel6))
.addGap(41, 41, 41)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jTextField6, javax.swing.GroupLayout.DEFAULT_SIZE, 109, Short.MAX_VALUE)
.addComponent(jTextField5, javax.swing.GroupLayout.DEFAULT_SIZE, 109, Short.MAX_VALUE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)))
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(jButton2, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButton1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addComponent(jButton3)))
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel3)
.addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, 100, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(50, 50, 50)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, 105, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel4))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 47, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel5, javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jTextField4, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.PREFERRED_SIZE, 87, javax.swing.GroupLayout.PREFERRED_SIZE))))
.addGap(33, 33, 33))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(28, 28, 28)
.addComponent(jLabel1)
.addGap(40, 40, 40)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel2)
.addComponent(jButton1))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addGroup(layout.createSequentialGroup()
.addComponent(jButton2)
.addGap(31, 31, 31))
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel7)
.addComponent(jTextField5, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jButton3))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel6)
.addComponent(jTextField6, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)))
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel3)
.addComponent(jLabel4)
.addComponent(jLabel5))
.addGap(31, 31, 31)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jTextField4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addContainerGap(45, Short.MAX_VALUE))
);

pack();
}//

private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
System.exit(0);
// TODO add your handling code here:
}

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
Connection cn=null;
ResultSet rst=null;
Statement stm=null;
ResultSetMetaData metadata=null;
String query;

try{
//4.establecer un try () catch()()
Class.forName(DRIVER);
//5.-Crear la conexion
cn=DriverManager.getConnection(url,"root","123");

//6.Asociar el objeto Satemet
stm=cn.createStatement();
String AuthorID=jTextField1.getText().toString();
query="select * from Authors where AuthorID="+AuthorID;
//7.Asociar el objeto ResultSet
//query="select COUNT(*) from Titles";
//query="select COUNT(*) from Authors";
//query="select Authors.AuthorID,FirstName, Titles.Title, CopyRight from Authors inner join AuthorISBN inner join Titles on Authors.AuthorID='2'= AuthorISBN.AuthorID and AuthorISBN.ISBN=Titles.ISBN ";
//query="select Authors.AuthorID,FirstName, Titles.Title, CopyRight from Authors inner join AuthorISBN inner join Titles on Authors.AuthorID=AuthorISBN.AuthorID and AuthorISBN.ISBN=Titles.ISBN ";
rst=stm.executeQuery(query);
//8.Asociar el objeto ResulSetMetaData al objeto ResultSet para recuperar estructura
metadata=rst.getMetaData();
//Mostrar el numero de columnas del objeto ResulSet
int nc=metadata.getColumnCount();
//imprimir los nombres de todas las columnas
for (int i=1; i<=nc;i++){
//System.out.printf("%-8s\t",metadata.getCatalogName(i));
}
System.out.println();
//9.imprimir los datos
while (rst.next()){
for(int i=1;i<=nc;i++){
//System.out.printf("%-8s\t",rst.getObject(i));
if (i==1){
jTextField2.setText(rst.getObject(i).toString());
}
if (i==2){
jTextField3.setText(rst.getObject(i).toString());
}
if (i==3){
jTextField4.setText(rst.getObject(i).toString());
}

}
}
} catch(SQLException sqlException){
sqlException.printStackTrace();

} catch(ClassNotFoundException classNotFoundException){
classNotFoundException.printStackTrace();
}// TODO add your handling code here:
}

private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {
Connection cn=null;
ResultSet rst=null;
Statement stm=null;
ResultSetMetaData metadata=null;
String query;

try
{
// load the driver class
Class.forName(DRIVER);
// establish connection to database
cn = DriverManager.getConnection(url, "root", "123" );
//DriverManager.getConnection( DATABASE_URL, "jhtp7", "jhtp7" );

// create Statement for querying database
stm = cn.createStatement(rst.TYPE_SCROLL_SENSITIVE,rst.CONCUR_UPDATABLE);
int AuthorID=Integer.parseInt(jTextField1.getText());
String FirstName=jTextField5.getText().toString();
String LastName=jTextField6.getText().toString();
query="INSERT INTO authors (AuthorID,FirstName,LastName) VALUES ("+AuthorID+","+"'"+FirstName+"'"+","+"'"+LastName+"'"+")";
int num= stm.executeUpdate(query);
if(num!=0){
System.out.println("registro insertado");
}
else
{
System.out.println("problemas con la insercion");
}
//8.Asociar el objeto ResulSetMetaData al objeto ResultSet para recuperar estructura
metadata=rst.getMetaData();
//Mostrar el numero de columnas del objeto ResulSet
int nc=metadata.getColumnCount();
//imprimir los nombres de todas las columnas
for (int i=1; i<=nc;i++){
//System.out.printf("%-8s\t",metadata.getCatalogName(i));
}
System.out.println();
//9.imprimir los datos
while (rst.next()){
for(int i=1;i<=nc;i++){
//System.out.printf("%-8s\t",rst.getObject(i));
if (i==1){
jTextField6.setText(rst.getObject(i).toString());
}

}
}
} catch(SQLException sqlException){
sqlException.printStackTrace();

} catch(ClassNotFoundException classNotFoundException){
classNotFoundException.printStackTrace();

} // TODO add your handling code here:
}

private void jTextField6ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}

/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new insetrar().setVisible(true);
}
});
}

// Variables declaration - do not modify
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton3;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JLabel jLabel5;
private javax.swing.JLabel jLabel6;
private javax.swing.JLabel jLabel7;
private javax.swing.JTextField jTextField1;
private javax.swing.JTextField jTextField2;
private javax.swing.JTextField jTextField3;
private javax.swing.JTextField jTextField4;
private javax.swing.JTextField jTextField5;
private javax.swing.JTextField jTextField6;
// End of variables declaration

}