implement AnnotationParser system
All checks were successful
github-mirror / push-github (push) Successful in 4s
Build / Gradle-Build (push) Successful in 13s
Test / Gradle-Test (push) Successful in 16s

This commit is contained in:
2024-11-24 00:02:19 +01:00
parent 0ea330d48b
commit 582e0f0bae
7 changed files with 126 additions and 49 deletions

View File

@@ -0,0 +1,8 @@
package net.tomatentum.marinara.parser;
import java.lang.reflect.Method;
public interface AnnotationParser {
void parse();
Method getMethod();
}