public class PointTableRepresentation extends TableRepresentation
{
	PointTableRepresentation(int n)
	{
		size = n;
		cell = new PointRelation[size][size];
		label = new String[size];
		try
		{
			for (int i = 0; i < size; i++)
			{
				for (int j = 0; j < size; j++)
					cell[i][j] = new PointRelation(
						(i == j ? 0 : PointRelation.ANY));
				label[i] = makeLabel(i);
			}
		}
		catch (FormatException e)
		{
			throw new RuntimeException("Unexpected FormatException: " +
				PointRelation.ANY);
		}
	}
}