public MyTableModel()

in src/org/pushingpixels/lightbeam/panels/TablePanel.java [139:163]


		public MyTableModel(int rows) {
			this.rows = rows;
			this.data = new ArrayList<Object[]>();
			for (int i = 0; i < rows; i++) {
				Object[] row = new Object[this.cols];
				this.data.add(row);
				row[0] = "cell " + i + ":" + 0;
				row[1] = "predef";
				row[2] = new Boolean(i % 2 == 0);
				row[3] = new Byte((byte) i);
				row[4] = new Float(i);
				row[5] = new Double(i);
				row[6] = "cell " + i + ":" + 6;
				Calendar cal = Calendar.getInstance();
				cal.set(2000 + i, 1 + i, 1 + i);
				row[7] = cal.getTime();
				row[8] = IconManager.getRandomIcon();

				int comp = i * 20;
				int red = (comp / 3) % 255;
				int green = (comp / 2) % 255;
				int blue = comp % 255;
				row[9] = new Color(red, green, blue);
			}
		}