}
@Override
public void registerButton(Class<?> cls) {
AliasName annotation = cls.getAnnotation(AliasName.class);
if (annotation != null) {
BUTTON_REGISTRY.put(annotation.name(), (Class<? extends ProcessToolActionButton>) cls);
logger.info("Registered button alias: " + annotation.name() + " -> " + cls.getName());
}
}