SteamWar/SpigotCore
Archiviert
13
0

Add SWCommand.ClassMapper

Dieser Commit ist enthalten in:
yoyosource 2021-03-29 22:20:03 +02:00
Ursprung 7e733fca7c
Commit 2ad2dc29e4

Datei anzeigen

@ -89,6 +89,15 @@ public abstract class SWCommand {
throw new SecurityException(e.getMessage(), e);
}
});
add(ClassMapper.class, method, i -> i != 0, false, TypeMapper.class, (anno, parameters) -> {
try {
method.setAccessible(true);
Object object = method.invoke(this);
SWCommandUtils.addMapper(anno.value().getTypeName(), (TypeMapper<?>) object);
} catch (Exception e) {
throw new SecurityException(e.getMessage(), e);
}
});
add(RegisterHelp.class, method, i -> i != 1, true, null, (anno, parameters) -> {
if (!parameters[parameters.length - 1].isVarArgs()) {
return;
@ -167,4 +176,11 @@ public abstract class SWCommand {
String value();
}
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
protected @interface ClassMapper {
Class<?> value();
}
}