mirror of
https://github.com/github/codeql.git
synced 2026-05-16 04:09:27 +02:00
10 lines
321 B
Java
10 lines
321 B
Java
class Annotation {
|
|
//...
|
|
}
|
|
|
|
void printAnnotation(Annotation annotation) {
|
|
System.out.println("Message: " + annotation.getMessage());
|
|
System.out.println("Line: " + annotation.getLine());
|
|
System.out.println("Offset: " + annotation.getOffset());
|
|
System.out.println("Length: " + annotation.getLength());
|
|
} |