import java.awt.*;
import javax.swing.*;
import java.awt.event.*;

public class Honors2 extends JFrame 
{
	//  create an array of references to the squares
	int MAX = 15;
	JButton [ ][ ] squares = new JButton [MAX][MAX];
	 final  String o ="  ", I = " |";
	
	String[][] grid = new String[][] {
        			{I,I,I,I,I,I,I,I,I,I,I,I,I,I,I},
				{I,I,o,o,o,o,o,o,o,o,I,I,I,I,I},
				{I,I,o,I,I,o,I,I,I,o,I,I,I,I,I},
				{I,o,o,o,I,o,I,o,o,o,I,I,I,I,I},
				{I,I,I,o,I,o,I,I,I,o,I,I,I,I,I},
				{I,I,I,o,I,I,I,I,I,o,I,I,I,I,I},
				{I,I,o,o,o,o,I,o,I,o,I,I,I,I,I},
				{I,I,o,I,I,o,I,o,I,I,I,I,I,I,I},
				{I,I,o,I,I,o,I,o,I,I,I,o,I,I,I},
				{I,I,o,I,I,o,o,o,o,o,I,o,I,I,I},
				{I,I,o,I,I,o,I,o,I,o,I,o,I,I,I},
				{I,I,o,I,I,o,I,o,I,o,I,o,o,o,I},
				{I,I,o,I,I,o,I,o,I,o,I,o,I,I,I},
				{I,I,o,I,I,o,I,o,I,o,o,o,I,I,I},
				{I,I,I,I,I,I,I,I,I,I,I,I,I,I,I} };
}
	
	

