import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public static class VarGlob
{
public static string var1;
public static int var2;
}
class Surface extends JFrame {
public int i;
public VarGob Global;
Surface(){
final int tabla[][],c=0,cont=0;
//tabla almacena los numeros q el jugador desea en su tablero
int x,y,a,s,sa;
tabla=new int[5][5];
y=10;
s=0;
sa=0;
JButton boton[];//creo una arreglo de botones
boton = new JButton[100];
getContentPane( ).setLayout(null);
for (a=1;a<=10;a++)//cambia de fila
{
x=10;
for (i=sa;i<=sa+9;i++)//cantidad de columnas
{
s=i;
boton[i]=new JButton(s+"");
boton[i].addActionListener(
new ActionListener (){
public void actionPerformed (ActionEvent event)
{
String texto;
texto=event+"";//extrae el texto del boton del evento
texto=texto.substring(48,50);
if (texto.charAt(1) ==(char)44)//44 es la coma
texto=texto.substring(0,1);
JOptionPane.showMessageDialog (null,texto);
//deseo utilizarlas aqui pero no puedo
}
});//fin de action listener
this.getContentPane().add(boton[i]);
boton[i].setBounds(x,y,50,50);
x=x+50;
}
y=y+50;
sa=s+1;//asigno el # en q quede para seguir la cuenta
}
Global.var1 = "hola";
Global.var2 = 32600;
}
}
class Bingo {
public static void main(String args[]) {
VarGlob Global2;
if( Global2.var1=="hola")
Global2.var2 =0;
Surface obj= new Surface();
obj.setBounds(100,5,525,550);
obj.setVisible(true);
obj.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}