Uses of Class
java.io.File

Packages that use File
java.io   
java.lang   
java.util.jar   
java.util.zip   
org.apache.felix.cm.file   
org.apache.felix.deployment.rp.autoconf   
org.apache.felix.deploymentadmin.spi   
org.apache.felix.fileinstall   
org.apache.felix.fileinstall.internal   
org.apache.felix.framework.cache   
org.apache.felix.framework.util   
org.apache.felix.gogo.command   
org.apache.felix.ipojo   
org.apache.felix.ipojo.composite   
org.apache.felix.ipojo.junit4osgi.plugin   
org.apache.felix.ipojo.manipulator   
org.apache.felix.ipojo.task   
org.apache.felix.prefs.impl   
org.osgi.framework Framework Package Version 1.5. 
org.osgi.service.deploymentadmin.spi Deployment Admin SPI Package Version 1.0. 
 

Uses of File in java.io
 

Methods in java.io that return File
static File File.createTempFile(String var0, String var1)
           
static File File.createTempFile(String var0, String var1, File var2)
           
 File File.getAbsoluteFile()
           
 File File.getCanonicalFile()
           
 File File.getParentFile()
           
 File[] File.listFiles()
           
 File[] File.listFiles(FileFilter var0)
           
 File[] File.listFiles(FilenameFilter var0)
           
static File[] File.listRoots()
           
 

Methods in java.io with parameters of type File
 boolean FileFilter.accept(File var0)
           
 boolean FilenameFilter.accept(File var0, String var1)
           
 int File.compareTo(File var0)
           
static File File.createTempFile(String var0, String var1, File var2)
           
 boolean File.renameTo(File var0)
           
 

Constructors in java.io with parameters of type File
File(File var0, String var1)
           
FileInputStream(File var0)
           
FileOutputStream(File var0)
           
FileReader(File var0)
           
FileWriter(File var0)
           
RandomAccessFile(File var0, String var1)
           
 

Uses of File in java.lang
 

Methods in java.lang with parameters of type File
 Process Runtime.exec(String[] var0, String[] var1, File var2)
           
 Process Runtime.exec(String var0, String[] var1, File var2)
           
 

Uses of File in java.util.jar
 

Constructors in java.util.jar with parameters of type File
JarFile(File var0)
           
JarFile(File var0, boolean var1)
           
JarFile(File var0, boolean var1, int var2)
           
 

Uses of File in java.util.zip
 

Constructors in java.util.zip with parameters of type File
ZipFile(File var0)
           
ZipFile(File var0, int var1)
           
 

Uses of File in org.apache.felix.cm.file
 

Methods in org.apache.felix.cm.file that return File
 File FilePersistenceManager.getLocation()
          Returns the directory in which the configuration files are written as a File object.
 

Uses of File in org.apache.felix.deployment.rp.autoconf
 

Constructors in org.apache.felix.deployment.rp.autoconf with parameters of type File
PersistencyManager(File root)
           
 

Uses of File in org.apache.felix.deploymentadmin.spi
 

Methods in org.apache.felix.deploymentadmin.spi that return File
 File DeploymentSessionImpl.getDataFile(Bundle bundle)
          Retrieve the base directory of the persistent storage area according to OSGi Core R4 6.1.6.10 for the given BundleContext.
 

Uses of File in org.apache.felix.fileinstall
 

Methods in org.apache.felix.fileinstall that return File
 File ArtifactTransformer.transform(File artifact, File tmpDir)
          Process the given file (canHandle returned true previously) Can return or a pointer to a transformed file.
 

Methods in org.apache.felix.fileinstall with parameters of type File
 boolean ArtifactListener.canHandle(File artifact)
          Returns true if the listener can process the given artifact.
 void ArtifactInstaller.install(File artifact)
          Install the artifact
 File ArtifactTransformer.transform(File artifact, File tmpDir)
          Process the given file (canHandle returned true previously) Can return or a pointer to a transformed file.
 void ArtifactInstaller.uninstall(File artifact)
          Uninstall the artifact
 void ArtifactInstaller.update(File artifact)
          Update the artifact
 

Uses of File in org.apache.felix.fileinstall.internal
 

Methods in org.apache.felix.fileinstall.internal that return File
 File Artifact.getJaredDirectory()
           
 File Artifact.getPath()
           
 File Artifact.getTransformed()
           
 

Methods in org.apache.felix.fileinstall.internal with parameters of type File
 boolean BundleTransformer.canHandle(File artifact)
           
 boolean ConfigInstaller.canHandle(File artifact)
           
 long Scanner.getChecksum(File file)
          Retrieve the previously computed checksum for a give file.
 void ConfigInstaller.install(File artifact)
           
static void Util.jarDir(File directory, File zipName)
          Jar up a directory
static void Util.jarDir(File directory, OutputStream os)
           
 void Artifact.setJaredDirectory(File jaredDirectory)
           
 void Artifact.setPath(File path)
           
 void Artifact.setTransformed(File transformed)
           
 void ConfigInstaller.uninstall(File artifact)
           
 void ConfigInstaller.update(File artifact)
           
static void Util.zipDir(File directory, ZipOutputStream zos, String path, Set exclusions)
          Zip up a directory path
 

Constructors in org.apache.felix.fileinstall.internal with parameters of type File
Scanner(File directory)
          Create a scanner for the specified directory
Scanner(File directory, FilenameFilter filter)
          Create a scanner for the specified directory and file filter
 

Uses of File in org.apache.felix.framework.cache
 

Methods in org.apache.felix.framework.cache that return File
 File BundleArchive.getDataFile(String fileName)
           Returns a File object corresponding to the data file of the relative path of the specified string.
 File JarContent.getFile()
           
 File BundleRevision.getRevisionRootDir()
           Returns the root directory for this revision.
 File BundleCache.getSystemBundleDataFile(String fileName)
          Provides the system bundle access to its private storage area; this special case is necessary since the system bundle is not really a bundle and therefore must be treated in a special way.
 

Constructors in org.apache.felix.framework.cache with parameters of type File
BundleArchive(Logger logger, Map configMap, File archiveRootDir)
           This constructor is called when an archive for a bundle is being reconstructed when the framework is restarted.
BundleArchive(Logger logger, Map configMap, File archiveRootDir, long id, int startLevel, String location, InputStream is)
           This constructor is used for creating new archives when a bundle is installed into the framework.
BundleRevision(Logger logger, Map configMap, File revisionRootDir, String location)
           This class is abstract and cannot be created.
DirectoryContent(Logger logger, Map configMap, Object revisionLock, File rootDir, File dir)
           
JarContent(Logger logger, Map configMap, Object revisionLock, File rootDir, File file, ZipFileX zipFile)
           
 

Uses of File in org.apache.felix.framework.util
 

Methods in org.apache.felix.framework.util that return File
 File SecureAction.createTempFile(String prefix, String suffix, File dir)
           
 File[] SecureAction.listDirectory(File file)
           
 

Methods in org.apache.felix.framework.util with parameters of type File
 File SecureAction.createTempFile(String prefix, String suffix, File dir)
           
 boolean SecureAction.deleteFile(File target)
           
 boolean SecureAction.fileExists(File file)
           
 String SecureAction.getAbsolutePath(File file)
           
 FileInputStream SecureAction.getFileInputStream(File file)
           
 FileOutputStream SecureAction.getFileOutputStream(File file)
           
 boolean SecureAction.isFileDirectory(File file)
           
 File[] SecureAction.listDirectory(File file)
           
 boolean SecureAction.mkdir(File file)
           
 boolean SecureAction.mkdirs(File file)
           
 ZipFileX SecureAction.openZipFile(File file)
           
 boolean SecureAction.renameFile(File oldFile, File newFile)
           
 URI SecureAction.toURI(File file)
           
 

Constructors in org.apache.felix.framework.util with parameters of type File
ZipFileX(File file)
           
ZipFileX(File file, int mode)
           
 

Uses of File in org.apache.felix.gogo.command
 

Methods in org.apache.felix.gogo.command that return File
 File Files.cd(CommandSession session)
           
 File Files.cd(CommandSession session, String dir)
           
 File[] Files.ls(CommandSession session)
           
 File[] Files.ls(CommandSession session, String pattern)
           
 

Methods in org.apache.felix.gogo.command with parameters of type File
static void Util.copy(InputStream is, File dir, String destName, String destDir, byte[] buffer)
           
static void Util.downloadSource(PrintStream out, PrintStream err, URL srcURL, File localDir, boolean extract)
           
 void OBR.javadoc(boolean extract, File localDir, String[] args)
           
 void OBR.source(boolean extract, File localDir, String[] args)
           
static void Util.unjar(JarInputStream jis, File dir)
           
 

Uses of File in org.apache.felix.ipojo
 

Methods in org.apache.felix.ipojo that return File
 File IPojoContext.getDataFile(String filename)
          Gets a data file.
 File PolicyServiceContext.getDataFile(String filename)
          Gets a data file.
 

Uses of File in org.apache.felix.ipojo.composite
 

Methods in org.apache.felix.ipojo.composite that return File
 File CompositeServiceContext.getDataFile(String filename)
          Get a data file.
 

Uses of File in org.apache.felix.ipojo.junit4osgi.plugin
 

Methods in org.apache.felix.ipojo.junit4osgi.plugin with parameters of type File
 void XMLReport.generateReport(junit.framework.Test test, junit.framework.TestResult tr, File reportsDirectory, BundleContext bc, Map configuration)
          Generates the XML reports.
 

Uses of File in org.apache.felix.ipojo.manipulator
 

Methods in org.apache.felix.ipojo.manipulator with parameters of type File
 void Pojoization.directoryPojoization(File directory, File metadataFile, File manifestFile)
          Manipulates an expanded bundles.
 void Pojoization.pojoization(File in, File out, File metadataFile)
          Manipulates an input bundle.
 void Pojoization.pojoization(File in, File out, InputStream metadata)
          Manipulates an input bundle.
protected  void Pojoization.searchClassFiles(File dir, List classes)
          Navigates across directories to find class files.
protected  void Pojoization.setBytecode(File classFile, byte[] rawClass)
          Writes the .class raw data to the storage support
 

Uses of File in org.apache.felix.ipojo.task
 

Methods in org.apache.felix.ipojo.task with parameters of type File
 void IPojoTask.setDir(File dir)
          Set the input directory.
 void IPojoTask.setInput(File in)
          Set the input bundle.
 void IPojoTask.setManifest(File manifest)
          Set the manifest file.
 void IPojoTask.setMetadata(File meta)
          Set the metadata file.
 void IPojoTask.setOutput(File out)
          Set the output bundle.
 

Uses of File in org.apache.felix.prefs.impl
 

Fields in org.apache.felix.prefs.impl declared as File
protected  File DataFileBackingStoreImpl.rootDirectory
          The root directory (or null if not available)
 

Methods in org.apache.felix.prefs.impl that return File
protected  File DataFileBackingStoreImpl.getFile(PreferencesDescription desc)
          Get the file fo the preferences tree.
 

Methods in org.apache.felix.prefs.impl with parameters of type File
protected  PreferencesDescription DataFileBackingStoreImpl.getDescription(File file)
           
 

Uses of File in org.osgi.framework
 

Methods in org.osgi.framework that return File
 File BundleContext.getDataFile(String filename)
          Creates a File object for a file in the persistent storage area provided for the bundle by the Framework.
 

Uses of File in org.osgi.service.deploymentadmin.spi
 

Methods in org.osgi.service.deploymentadmin.spi that return File
 File DeploymentSession.getDataFile(Bundle bundle)
          Returns the private data area of the specified bundle.
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.