Interface JAIFEvents
public interface JAIFEvents
Callbacks for parsing an external annotation file.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidannotationField(String fieldName, Object constant) Called to visit an annotation field.voidannotationFieldDefinition(String type, String fieldName) Called to visit an annotation field definition.voidendAnnotation(String annotationName) Called to indicate the end of an annotation.voidendAnnotationDefinition(String annotationName) Called to indicate the end of an annotation definition.voidendPackageDefinition(String pkgName) Called to indicate the end of a package definition.voidstartAnnotation(String annotationName) Called to indicate the start of an annotation.voidstartAnnotationDefinition(String annotationName, String retention) Called to indicate the start of an annotation definition.voidstartPackageDefinition(String pkgName) Called to indicate the start of a package definition.
-
Method Details
-
startPackageDefinition
Called to indicate the start of a package definition.- Parameters:
pkgName- package name
-
endPackageDefinition
Called to indicate the end of a package definition.- Parameters:
pkgName-
-
startAnnotation
Called to indicate the start of an annotation.- Parameters:
annotationName- annotation name
-
endAnnotation
Called to indicate the end of an annotation.- Parameters:
annotationName- annotation name
-
annotationField
-
startAnnotationDefinition
-
endAnnotationDefinition
Called to indicate the end of an annotation definition.- Parameters:
annotationName- name of the annotation
-
annotationFieldDefinition
-