All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.smallrye.mutiny.vertx.codegen.lang.MutinyGenAnnotationCodeWriter Maven / Gradle / Ivy

The newest version!
package io.smallrye.mutiny.vertx.codegen.lang;

import java.io.PrintWriter;

import io.vertx.codegen.ClassModel;

public class MutinyGenAnnotationCodeWriter implements CodeWriter {
    @Override
    public void generate(ClassModel model, PrintWriter writer) {
        writer.print("@io.smallrye.mutiny.vertx.MutinyGen(");
        writer.print(model.getType().getName());
        writer.println(".class)");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy