org.objectweb.jac.aspects.gui
Class MatrixUtils

java.lang.Object
  |
  +--org.objectweb.jac.aspects.gui.MatrixUtils

public class MatrixUtils
extends Object

Gui related matrix utilities.

See Also:
Matrix

Constructor Summary
MatrixUtils()
           
 
Method Summary
static void toCSV(Matrix matrix, Writer writer)
          Export a matrix to a CSV (comma separated values) file.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MatrixUtils

public MatrixUtils()
Method Detail

toCSV

public static void toCSV(Matrix matrix,
                         Writer writer)
                  throws IOException
Export a matrix to a CSV (comma separated values) file.

Parameters:
matrix - the matrix to export
writer - where to write the CSV data
IOException