import java.awt.;
import java.awt.Frame;
import java.awt.event.;
import javax.swing.*;
public class Main extends JFrame {
private JLabel lbl, p, J1, J2, J3, J4 ;
private JButton prox, volta, p1, p2, p3, p4;
private FlowLayout layout;
private int A;
String I= “”;
int P = 0;
public Main(){
super (“Testando Botoes”);
I = "Testando";
p = new JLabel (I);
lbl = new JLabel ("Questionário para Crianças sobre Educação Ambiental");
volta = new JButton ("Voltar");
prox = new JButton ("Proxima");
layout = new FlowLayout();
Container container = getContentPane();
container.setLayout(layout);
container.add (lbl);
container.add (p);
container.add (volta);
container.add (prox);
setSize( 400,400);
setVisible (true);
volta.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent event){
exec1();
}
}
);
prox.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent event){
exec2();
}
}
);
switch (P){
case 1:
I = "O que é biologia ?";
break;
case 2:
I = "O que é ecossistema ?";
break;
case 3:
I = "O que é Nicho ?";
break;
}
}
public static void main (String args[])
{
Main application = new Main();
application.setDefaultCloseOperation(
JFrame.EXIT_ON_CLOSE);
application.setVisible(true);
}
public int exec1(){
P = P - 1;
return A;
}
public int exec2(){
P = P + 1;
return A;
};
}
Não funciona Galera!!!
javascript:emoticon(’:D’);
javascript:emoticon(’:D’);
Me ajudem aí…