Package weka.core
Class FileHelper
- java.lang.Object
-
- weka.core.FileHelper
-
public class FileHelper extends java.lang.ObjectWrapper class for File objects. File objects wrapped in this class can be serialized by Weka's XML serialization mechanism.- Version:
- $Revision: $
- Author:
- Mark Hall (mhall{[at]}pentaho{[dot]}com)
-
-
Constructor Summary
Constructors Constructor Description FileHelper()No-op constructor for beans conformityFileHelper(java.io.File file)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.FilegetFile()Get the file wrapped in this instancejava.lang.StringgetFilePath()Get the file pathvoidsetFilePath(java.lang.String path)Set the file path
-
-
-
Method Detail
-
setFilePath
public void setFilePath(java.lang.String path)
Set the file path- Parameters:
path- the path to set
-
getFilePath
public java.lang.String getFilePath()
Get the file path- Returns:
- the path to set
-
getFile
public java.io.File getFile()
Get the file wrapped in this instance- Returns:
- the File object
-
-