KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jac > aspects > gui > web > MatrixView


1 /*
2   Copyright (C) 2003 Renaud Pawlak
3   
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU Lesser General Public License as
6   published by the Free Software Foundation; either version 2 of the
7   License, or (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12   GNU Lesser General Public License for more details.
13
14   You should have received a copy of the GNU Lesser General Public License
15   along with this program; if not, write to the Free Software
16   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */

17
18 package org.objectweb.jac.aspects.gui.web;
19
20 import org.objectweb.jac.aspects.gui.GuiAC;
21 import org.objectweb.jac.util.Matrix;
22 import org.objectweb.jac.core.rtti.FieldItem;
23 import java.io.PrintWriter JavaDoc;
24
25 public class MatrixView extends AbstractFieldView implements HTMLViewer {
26     Matrix matrix;
27
28     public MatrixView(Object JavaDoc value, Object JavaDoc substance, FieldItem field) {
29         super(substance, field);
30         setValue(value);
31     }
32
33     public void setValue(Object JavaDoc value) {
34         this.matrix = (Matrix) value;
35     }
36
37     public void genHTML(PrintWriter JavaDoc out) {
38         out.println("<table class=\"matrix\">");
39         for (int j=0; j<matrix.getRowCount(); j++) {
40             out.println(" <tr>");
41             for (int i=0; i<matrix.getColumnCount(); i++) {
42                 out.println(
43                     " <td>"
44                     + GuiAC.toString(matrix.get(i, j))
45                     + "</td>");
46             }
47             out.println(" </tr>");
48         }
49         out.println("</table>");
50     }
51 }
52
Popular Tags