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

com.github.nalukit.nalu.processor.util.BuildWithNaluCommentProvider Maven / Gradle / Ivy

There is a newer version: 2.20.3
Show newest version
package com.github.nalukit.nalu.processor.util;

import com.github.nalukit.nalu.processor.ProcessorConstants;
import com.squareup.javapoet.CodeBlock;

public class BuildWithNaluCommentProvider {

  public static BuildWithNaluCommentProvider INSTANCE = new BuildWithNaluCommentProvider();

  private BuildWithNaluCommentProvider() {
  }

  public CodeBlock getGeneratedComment() {
    String sb = "Build with Nalu version >>" + ProcessorConstants.PROCESSOR_VERSION + "<< at " + ProcessorConstants.BUILD_TIME;
    return CodeBlock.builder()
                    .add(sb)
                    .build();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy