import com.example.annotations.Alchemy;
import com.example.annotations.Processor;
public class MyClass {
@Alchemy(method = "doSomething")
public void doSomething() {
}
public static void main(String[] args) {
Processor processor = new Processor();
processor.processAnnotations(MyClass.class);
}
}