Uses of Class
data.DataException

Packages that use DataException
data   
data.exporters   
data.importers   
gui.workSpace   
 

Uses of DataException in data
 

Methods in data that throw DataException
static void SerialManager.deleteMatrix(java.lang.String filename)
          Deletes a Matrix from the library and Workspaces referencing it
static void SerialManager.deleteObject(java.lang.String fileName, java.lang.String filePath, java.lang.String fileExt)
          Deletes an object from the disk.
static void SerialManager.deleteWorkspace(java.lang.String filename)
          Deletes a Workspace from the saved ones
static void SerialManager.exportMatrix(java.lang.String matName, java.lang.String exportName, java.lang.String exportPath)
          Export a saved Matrix from the Matrix directory to another arbitrary directory
static Matrix SerialManager.loadMatrix(java.lang.String filename)
          Return the Matrix previously saved with the given name
private static java.lang.Object SerialManager.loadObject(java.lang.String fileName, java.lang.String filePath, java.lang.String fileExt)
          Loads any object from disk.
static Workspace SerialManager.loadWorkspace(java.lang.String filename)
          Return the Workspace previously saved with the given name
static void SerialManager.saveMatrix(Matrix m, java.lang.String filename)
          Saves a matrix object with the given name
private static void SerialManager.saveObject(java.lang.Object o, java.lang.String fileName, java.lang.String dirPath, java.lang.String fileExt)
          Saves any object in disk.
static void SerialManager.saveWorkspace(Workspace w, java.lang.String filename)
          Saves a Workspace object with the given name
 Context[] Context.splitContex(int testId, Matrix m, Configuration cnf)
          Separates the current context in two others, discriminating one from each other using their estimation on the test result with especified identificator
static java.lang.String SerialManager.updateMatrix(java.lang.String matName, java.lang.String newName, java.lang.String newDesc)
          Updates a saved Matrix attributes with the given ones
 

Constructors in data that throw DataException
Workspace(java.lang.String wsName, java.lang.String wsInfo, java.lang.String wsMatName, Configuration wsCnf)
          Constructor given the reference Matrix
 

Uses of DataException in data.exporters
 

Methods in data.exporters that throw DataException
static java.lang.String ExporterTXT.getTXT(WorkspaceManager wm)
          Generates the report.
static java.io.File ExporterDOT.writeDOT(Tree t)
          Creates a temporal file containing the exported tree in DOT format
static java.io.File ExporterTreeML.writeTreeML(Tree t)
          Creates a temporal file containing the exported tree in TreeML format
static java.io.File ExporterTXT.writeTXT(WorkspaceManager wm)
          Creates a temporal file containing the report.
static java.io.File ExporterXML.writeXML(Tree t)
          Creates a temporal file containing the exported tree in XML format
 

Uses of DataException in data.importers
 

Methods in data.importers that throw DataException
static Matrix ImporterXLS.importFile(java.io.File f)
          Parses the data and put it in the new Matrix object
static Matrix ImporterMAT.importFile(java.io.File f)
          Parses the data and put it in the new Matrix object
static Matrix ImporterIMAT.importFile(java.io.File f)
          Parses the data and put it in the new Matrix object
static Matrix ImporterCSV.importFile(java.io.File f)
          Parses the data and put it in the new Matrix object
static Matrix Importer.importMatrix(java.io.File f)
          This function reads the given file and parse the data in it if applicable.
 

Uses of DataException in gui.workSpace
 

Constructors in gui.workSpace that throw DataException
WorkspaceManager(Workspace workspace)