Uses of Class
org.opensolaris.opengrok.analysis.FileAnalyzerFactory

Packages that use FileAnalyzerFactory
org.opensolaris.opengrok.analysis   
org.opensolaris.opengrok.analysis.archive   
org.opensolaris.opengrok.analysis.c   
org.opensolaris.opengrok.analysis.data   
org.opensolaris.opengrok.analysis.document   
org.opensolaris.opengrok.analysis.executables   
org.opensolaris.opengrok.analysis.java   
org.opensolaris.opengrok.analysis.lisp   
org.opensolaris.opengrok.analysis.plain   
org.opensolaris.opengrok.analysis.sh   
org.opensolaris.opengrok.analysis.sql   
org.opensolaris.opengrok.analysis.tcl   
 

Uses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis
 

Methods in org.opensolaris.opengrok.analysis that return FileAnalyzerFactory
static FileAnalyzerFactory AnalyzerGuru.find(byte[] signature)
          Finds a suitable analyser class for a magic signature
static FileAnalyzerFactory AnalyzerGuru.find(java.io.InputStream in)
          Finds a suitable analyser class for the data in this stream
static FileAnalyzerFactory AnalyzerGuru.find(java.io.InputStream in, java.lang.String file)
          Finds a suitable analyser class for file name.
static FileAnalyzerFactory AnalyzerGuru.find(java.lang.String file)
          Finds a suitable analyser class for file name.
static FileAnalyzerFactory AnalyzerGuru.findFactory(java.lang.String factoryClassName)
          Find a FileAnalyzerFactory with the specified class name.
static FileAnalyzerFactory AnalyzerGuru.findMagic(java.lang.String signature)
          Get an analyzer by looking up the "magic signature"
 FileAnalyzerFactory FileAnalyzer.getFactory()
          Get the factory which created this analyzer.
 FileAnalyzerFactory FileAnalyzerFactory.Matcher.isMagic(byte[] contents, java.io.InputStream in)
          Try to match the file contents with an analyzer factory.
 

Methods in org.opensolaris.opengrok.analysis with parameters of type FileAnalyzerFactory
static void AnalyzerGuru.addExtension(java.lang.String extension, FileAnalyzerFactory factory)
          Instruct the AnalyzerGuru to use a given analyzer for a given file extension.
static FileAnalyzer.Genre AnalyzerGuru.getGenre(FileAnalyzerFactory factory)
          Get the genre for a named class (this is most likely an analyzer)
static void AnalyzerGuru.writeXref(FileAnalyzerFactory factory, java.io.InputStream in, java.io.Writer out, Annotation annotation, Project project)
          Write a browsable version of the file
 

Constructors in org.opensolaris.opengrok.analysis with parameters of type FileAnalyzerFactory
FileAnalyzer(FileAnalyzerFactory factory)
          Creates a new instance of FileAnalyzer
 

Uses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.archive
 

Subclasses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.archive
 class BZip2AnalyzerFactory
           
 class GZIPAnalyzerFactory
           
 class TarAnalyzerFactory
           
 class ZipAnalyzerFactory
           
 

Constructors in org.opensolaris.opengrok.analysis.archive with parameters of type FileAnalyzerFactory
BZip2Analyzer(FileAnalyzerFactory factory)
           
GZIPAnalyzer(FileAnalyzerFactory factory)
           
TarAnalyzer(FileAnalyzerFactory factory)
           
ZipAnalyzer(FileAnalyzerFactory factory)
           
 

Uses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.c
 

Subclasses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.c
 class CAnalyzerFactory
           
 

Constructors in org.opensolaris.opengrok.analysis.c with parameters of type FileAnalyzerFactory
CAnalyzer(FileAnalyzerFactory factory)
           
 

Uses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.data
 

Subclasses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.data
 class IgnorantAnalyzerFactory
          Factory for analyzer that claims to analyze files which are mostly plain text data, but ignores them.
 class ImageAnalyzerFactory
          Factory for analyzer that tells that image files can be displayed.
 

Uses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.document
 

Subclasses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.document
 class TroffAnalyzerFactory
           
 

Constructors in org.opensolaris.opengrok.analysis.document with parameters of type FileAnalyzerFactory
TroffAnalyzer(FileAnalyzerFactory factory)
          Creates a new instance of TroffAnalyzer
 

Uses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.executables
 

Subclasses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.executables
 class ELFAnalyzerFactory
           
 class JarAnalyzerFactory
           
 class JavaClassAnalyzerFactory
           
 

Constructors in org.opensolaris.opengrok.analysis.executables with parameters of type FileAnalyzerFactory
ELFAnalyzer(FileAnalyzerFactory factory)
          Creates a new instance of ELFAnalyzer
JarAnalyzer(FileAnalyzerFactory factory)
           
JavaClassAnalyzer(FileAnalyzerFactory factory)
          Creates a new instance of JavaClassAnalyzer
 

Uses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.java
 

Subclasses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.java
 class JavaAnalyzerFactory
           
 

Constructors in org.opensolaris.opengrok.analysis.java with parameters of type FileAnalyzerFactory
JavaAnalyzer(FileAnalyzerFactory factory)
          Creates a new instance of JavaAnalyzer
 

Uses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.lisp
 

Subclasses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.lisp
 class LispAnalyzerFactory
           
 

Constructors in org.opensolaris.opengrok.analysis.lisp with parameters of type FileAnalyzerFactory
LispAnalyzer(FileAnalyzerFactory factory)
           
 

Uses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.plain
 

Subclasses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.plain
 class PlainAnalyzerFactory
           
 class XMLAnalyzerFactory
           
 

Constructors in org.opensolaris.opengrok.analysis.plain with parameters of type FileAnalyzerFactory
PlainAnalyzer(FileAnalyzerFactory factory)
          Creates a new instance of PlainAnalyzer
XMLAnalyzer(FileAnalyzerFactory factory)
          Creates a new instance of XMLAnalyzer
 

Uses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.sh
 

Subclasses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.sh
 class ShAnalyzerFactory
           
 

Constructors in org.opensolaris.opengrok.analysis.sh with parameters of type FileAnalyzerFactory
ShAnalyzer(FileAnalyzerFactory factory)
           
 

Uses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.sql
 

Subclasses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.sql
 class SQLAnalyzerFactory
           
 

Constructors in org.opensolaris.opengrok.analysis.sql with parameters of type FileAnalyzerFactory
SQLAnalyzer(FileAnalyzerFactory factory)
           
 

Uses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.tcl
 

Subclasses of FileAnalyzerFactory in org.opensolaris.opengrok.analysis.tcl
 class TclAnalyzerFactory
           
 

Constructors in org.opensolaris.opengrok.analysis.tcl with parameters of type FileAnalyzerFactory
TclAnalyzer(FileAnalyzerFactory factory)