Searched defs:genre (Results 1 - 4 of 4) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DDiffData.java43 /** the genre of the requested diff */
44 public Genre genre; field in class:DiffData
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DXrefWriter.java58 * @param genre the genre of the data to be written.
61 public XrefWriter(String name, Genre genre) throws IOException { argument
62 this(name, genre, true);
69 * @param genre the genre of the data to be written.
73 public XrefWriter(String name, Genre genre, boolean compress) throws IOException { argument
74 this(new File(name), genre, compress);
82 * @param genre the genre o
85 XrefWriter(File file, Genre genre) argument
126 XrefWriter(File file, Genre genre, boolean compress) argument
[all...]
H A DFileAnalyzerFactory.java58 /** The genre for files recognized by this kind of analyzer. */
59 private final Genre genre; field in class:FileAnalyzerFactory
77 * @param genre the genre for this analyzer (if {@code null}, {@code
83 Genre genre) {
94 this.genre = (genre == null) ? Genre.DATA : genre;
161 * The genre this analyzer factory belongs to.
162 * @return a genre
80 FileAnalyzerFactory( String[] names, String[] suffixes, String[] magics, Matcher matcher, String contentType, Genre genre) argument
[all...]
H A DXrefHeader.java53 private Genre genre; field in class:XrefHeader
56 * Create a new default header for a crossfile of the given genre. Data
59 * @param genre genre of the file.
62 public XrefHeader(Genre genre) { argument
63 this(genre, false);
67 * Create a new default header for a crossfile of the given genre and
69 * @param genre genre of the file.
73 public XrefHeader(Genre genre, boolea argument
86 XrefHeader(Genre genre, boolean compressed, int lines, long chars) argument
[all...]

Completed in 22 milliseconds