8 lines
126 B
Java
Raw Normal View History

2019-04-22 08:17:20 +08:00
package com.baeldung.classgraph;
public class MethodWithAnnotation {
@TestAnnotation
public void service() {
}
}