Ola gostaria de uma ajuda. estou tentando executar meu jframe, so que ele nao e construido, ele executa certinho exibe essa mensagem abaixo mas nao constroi de jeito nenhum o visual dele etccc. sera q poderiam me ajudar a resolver o problema??
init:
deps-jar:
compile-single:
run-single:
CONSTRUÍDO COM SUCESSO (tempo total: 1 segundo)
E porque sao varias classes, dai na classe main eu to fazendo assim pra chamar. Ele ta executando normal, mas nao ta mostrando o formulario entende?? Vlw.
package main.view;
import main.view.*;
import main.utilitarios.*;
/**
*
* @author Roger
*/
public class Main extends javax.swing.JFrame {
Data data;
/** Creates new form Main */
public Main() {
initComponents();
data = new Data();
mostraData();
//this.timer1.start();
}
public static void main(String args[]) {
new Main().setVisible(true);
}
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
data_label = new javax.swing.JLabel();
hora_label = new javax.swing.JLabel();
jLabel1 = new javax.swing.JLabel();
jMenuBar1 = new javax.swing.JMenuBar();
jMenu1 = new javax.swing.JMenu();
jMenuItem1 = new javax.swing.JMenuItem();
jMenuItem2 = new javax.swing.JMenuItem();
jMenu3 = new javax.swing.JMenu();
jMenu2 = new javax.swing.JMenu();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setBackground(new java.awt.Color(255, 255, 255));
jPanel1.setBackground(new java.awt.Color(255, 255, 255));
jPanel1.setBorder(javax.swing.BorderFactory.createEmptyBorder(1, 1, 1, 1));
data_label.setText("Data");
hora_label.setText("hora");
jLabel1.setIcon(new javax.swing.ImageIcon("C:\\Documents and Settings\\Roger\\Meus documentos\\NetBeansProjects\\Principal\\src\\main\\utilitarios\\icons\\logo_2.png")); // NOI18N
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addContainerGap()
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addComponent(data_label)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 519, Short.MAX_VALUE)
.addComponent(hora_label))
.addComponent(jLabel1))
.addContainerGap())
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()
.addGap(38, 38, 38)
.addComponent(jLabel1)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 50, Short.MAX_VALUE)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(data_label)
.addComponent(hora_label)))
);
jMenu1.setText("Cadastrar");
jMenuItem1.setText("Funcionário");
jMenuItem1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jMenuItem1ActionPerformed(evt);
}
});
jMenu1.add(jMenuItem1);
jMenuItem2.setText("Serviços");
jMenuItem2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jMenuItem2ActionPerformed(evt);
}
});
jMenu1.add(jMenuItem2);
jMenuBar1.add(jMenu1);
jMenu3.setText("Relatório");
jMenu3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jMenu3ActionPerformed(evt);
}
});
jMenuBar1.add(jMenu3);
jMenu2.setText("Sair");
jMenu2.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
jMenu2MouseClicked(evt);
}
});
System.exit(0);
jMenuBar1.add(jMenu2);
setJMenuBar(jMenuBar1);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addContainerGap())
);
pack();
}// </editor-fold>
private void jMenuItem1ActionPerformed(java.awt.event.ActionEvent evt) {
new CadastroFuncionario().show();
}
private void jMenuItem2ActionPerformed(java.awt.event.ActionEvent evt) {
new ConstratarFuncionario().show();
}
private void jMenu2MouseClicked(java.awt.event.MouseEvent evt) {
System.out.println();
}
private void jMenu3ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}
public void mostraData(){
data_label.setText(data.getData());
}
/**
* @param args the command line arguments
*/
// Variables declaration - do not modify
private javax.swing.JLabel data_label;
private javax.swing.JLabel hora_label;
private javax.swing.JLabel jLabel1;
private javax.swing.JMenu jMenu1;
private javax.swing.JMenu jMenu2;
private javax.swing.JMenu jMenu3;
private javax.swing.JMenuBar jMenuBar1;
private javax.swing.JMenuItem jMenuItem1;
private javax.swing.JMenuItem jMenuItem2;
private javax.swing.JPanel jPanel1;
// End of variables declaration
}
@author Roger
*/
public class TestJFrame extends JFrame {
// Data data;
/** Creates new form Main */
public TestJFrame() {
super(“TITLE”);
initComponents();
//data = new Data();
mostraData(); //this.timer1.start();
}