/opengrok/test/org/opensolaris/opengrok/condition/ |
H A D | ConditionalRun.java | 25 import java.lang.annotation.Documented; 26 import java.lang.annotation.ElementType; 27 import java.lang.annotation.Retention; 28 import java.lang.annotation.RetentionPolicy; 29 import java.lang.annotation.Target;
|
H A D | ConditionalRunRule.java | 34 * This rule can be added to a Junit test and will look for the annotation 37 * {@link RunCondition} provided in the annotation is not satisfied. 71 ConditionalRun annotation = aDescription.getTestClass().getAnnotation(ConditionalRun.class); 72 return new IgnoreConditionCreator(aDescription.getTestClass(), annotation).create(); 80 ConditionalRun annotation = aDescription.getAnnotation(ConditionalRun.class); 81 return new IgnoreConditionCreator(aDescription.getTestClass(), annotation).create(); 89 IgnoreConditionCreator(Class<?> aTestClass, ConditionalRun annotation) { argument 91 this.conditionType = annotation.condition();
|
/opengrok/src/org/opensolaris/opengrok/analysis/sql/ |
H A D | PLSQLAnalyzer.java | 53 * @param annotation annotation for the file (could be null) 55 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 57 xref.annotation = annotation;
|
H A D | SQLAnalyzer.java | 53 * @param annotation annotation for the file (could be null) 55 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 57 xref.annotation = annotation;
|
/opengrok/src/org/opensolaris/opengrok/analysis/plain/ |
H A D | AbstractSourceCodeAnalyzer.java | 88 * @param annotation annotation for the file (could be null) 92 static protected void writeXref(JFlexXref lxref, Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 95 lxref.annotation = annotation;
|
H A D | XMLAnalyzer.java | 84 * @param annotation annotation for the file (could be null) 86 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 88 xref.annotation = annotation;
|
H A D | XMLAnalyzerFactory.java | 60 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument 63 XMLAnalyzer.writeXref(in, out, defs, annotation, project);
|
/opengrok/src/org/opensolaris/opengrok/analysis/uue/ |
H A D | UuencodeAnalyzer.java | 94 * @param annotation annotation for the file (could be null) 96 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 98 xref.annotation = annotation;
|
/opengrok/src/org/opensolaris/opengrok/analysis/c/ |
H A D | CAnalyzerFactory.java | 64 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument 66 CAnalyzer.writeXref(in, out, defs, annotation, project);
|
/opengrok/src/org/opensolaris/opengrok/analysis/csharp/ |
H A D | CSharpAnalyzerFactory.java | 57 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument 59 CSharpAnalyzer.writeXref(in, out, defs, annotation, project);
|
/opengrok/src/org/opensolaris/opengrok/analysis/document/ |
H A D | TroffAnalyzerFactory.java | 54 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument 57 TroffAnalyzer.writeXref(in, out, defs, annotation, project);
|
/opengrok/src/org/opensolaris/opengrok/analysis/erlang/ |
H A D | ErlangAnalyzer.java | 61 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 63 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
|
H A D | ErlangAnalyzerFactory.java | 57 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument 59 ErlangAnalyzer.writeXref(in, out, defs, annotation, project);
|
/opengrok/src/org/opensolaris/opengrok/analysis/fortran/ |
H A D | FortranAnalyzer.java | 56 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 58 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
|
H A D | FortranAnalyzerFactory.java | 54 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument 56 FortranAnalyzer.writeXref(in, out, defs, annotation, project);
|
/opengrok/src/org/opensolaris/opengrok/analysis/haskell/ |
H A D | HaskellAnalyzer.java | 61 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 63 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
|
H A D | HaskellAnalyzerFactory.java | 61 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument 63 HaskellAnalyzer.writeXref(in, out, defs, annotation, project);
|
/opengrok/src/org/opensolaris/opengrok/analysis/javascript/ |
H A D | JavaScriptAnalyzer.java | 61 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 63 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
|
H A D | JavaScriptAnalyzerFactory.java | 57 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument 59 JavaScriptAnalyzer.writeXref(in, out, defs, annotation, project);
|
/opengrok/src/org/opensolaris/opengrok/analysis/lisp/ |
H A D | LispAnalyzer.java | 56 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 58 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
|
H A D | LispAnalyzerFactory.java | 57 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument 59 LispAnalyzer.writeXref(in, out, defs, annotation, project);
|
/opengrok/src/org/opensolaris/opengrok/analysis/perl/ |
H A D | PerlAnalyzer.java | 59 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 61 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
|
/opengrok/src/org/opensolaris/opengrok/analysis/php/ |
H A D | PhpAnalyzer.java | 59 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 61 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
|
H A D | PhpAnalyzerFactory.java | 63 public void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) argument 65 PhpAnalyzer.writeXref(in, out, defs, annotation, project);
|
/opengrok/src/org/opensolaris/opengrok/analysis/python/ |
H A D | PythonAnalyzer.java | 59 static void writeXref(Reader in, Writer out, Definitions defs, Annotation annotation, Project project) throws IOException { argument 61 AbstractSourceCodeAnalyzer.writeXref(xref, in, out, defs, annotation, project);
|