Package org.nuiton.jaxx.compiler
Class JAXXCompilerFile
- java.lang.Object
-
- org.nuiton.jaxx.compiler.JAXXCompilerFile
-
public class JAXXCompilerFile extends Object
Represents a file to be treated by theJAXXCompiler.It contains informations about jaxx file, ident css, class name,...
Note: This class will be more used in next version (will have the compiler it-self, symbols table,...).
- Since:
- 2.0.2
- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Field Summary
Fields Modifier and Type Field Description protected Filebasedirroot directory of the source roots.protected StringclassNamefull qualified name of the jaxx file classprotected JAXXCompilercompilercompiler associated to the fileprotected StringcssExtensionCss file extension.protected FilecssFilelocation of the ident css fileprotected FilejaxxFilelocation of the jaxx file
-
Constructor Summary
Constructors Constructor Description JAXXCompilerFile(File basedir, File jaxxFile, String cssExtension)JAXXCompilerFile(File jaxxFile, String className, String cssExtension)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()FilegetBasedir()StringgetClassName()JAXXCompilergetCompiler()FilegetCssFile()FilegetJaxxFile()URLgetJAXXFileURL()voidsetCompiler(JAXXCompiler compiler)
-
-
-
Field Detail
-
basedir
protected final File basedir
root directory of the source roots.
-
jaxxFile
protected File jaxxFile
location of the jaxx file
-
cssFile
protected File cssFile
location of the ident css file
-
className
protected String className
full qualified name of the jaxx file class
-
compiler
protected JAXXCompiler compiler
compiler associated to the file
-
cssExtension
protected final String cssExtension
Css file extension.- See Also:
CompilerConfiguration.getCssExtension()
-
-
Method Detail
-
getBasedir
public File getBasedir()
-
getCompiler
public JAXXCompiler getCompiler()
-
getJaxxFile
public File getJaxxFile()
-
getJAXXFileURL
public URL getJAXXFileURL()
-
getCssFile
public File getCssFile()
-
getClassName
public String getClassName()
-
clear
public void clear()
-
setCompiler
public void setCompiler(JAXXCompiler compiler)
-
-