com.igormaznitsa.jbbp.plugin.common.converters.Target Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbbp-maven-plugin Show documentation
Show all versions of jbbp-maven-plugin Show documentation
Generator of sources from JBBP scripts
package com.igormaznitsa.jbbp.plugin.common.converters;
import javax.annotation.Nonnull;
public enum Target {
JAVA(new JavaConverter());
private final JBBPScriptTranslator JBBPScriptTranslator;
Target(@Nonnull final JBBPScriptTranslator translator) {
this.JBBPScriptTranslator = translator;
}
@Nonnull
public JBBPScriptTranslator getTranslator() {
return this.JBBPScriptTranslator;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy