Uses of Class
org.objectweb.jac.util.File

Packages that use File
org.objectweb.jac.ide This package contains the implementation of the JAC's IDE: UMLAF (for UML Aspectual Factory). 
org.objectweb.jac.util   
 

Uses of File in org.objectweb.jac.ide
 

Methods in org.objectweb.jac.ide that return File
 File Project.getCompilerCommand()
          Get the value of compilerCommand.
 File Project.getGenerationPath()
          Get the value of generationPath.
 File Project.getClassesDir()
          Returns the directory where the .class files should be stored
 File Project.getManifestDir()
           
 File Application.getJacFile()
           
 

Methods in org.objectweb.jac.ide with parameters of type File
static void Projects.export(File f)
          Exports projects to an XML file
static void Projects.importObjects(File f)
           
 void Project.setCompilerCommand(File v)
          Set the value of compilerCommand.
 void Project.setGenerationPath(File v)
          Set the value of generationPath.
 void Project.addClasspath(File path)
           
 void Project.removeClasspath(File path)
           
 void Project.addExternalFile(String name, File file)
          Add an external file to include in the JAR
static void CodeGeneration.createEnumCode(EnumeratedType enum, File dir)
          Generate java sources for an enumerated type.
static void CodeGeneration.createApplicationCode(Project prj, Application app, File baseDir)
          Generate code for an application (Run and aspect configurations)
static void CodeGeneration.createPackageCode(Project prj, Package pkg, File baseDir, String ppath)
          Generate code for the classes of a package and its subpackages.
static void CodeGeneration.createClassCode(Project prj, Class c, File baseDir, String ppath)
          Generate the java source code of a class.
static void CodeGeneration.createAspectCode(Project prj, Aspect a, File baseDir, String ppath)
          Generate java source code for an aspect.
 

Uses of File in org.objectweb.jac.util
 

Methods in org.objectweb.jac.util with parameters of type File
 String File.getRelativePath(File parent)
          Gets a path relative to a parent directory of the file.
 

Constructors in org.objectweb.jac.util with parameters of type File
File(File parent, String child)