
com.hubspot.jinjava.doc.JinjavaDocSnippet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jinjava Show documentation
Show all versions of jinjava Show documentation
Jinja templating engine implemented in Java
package com.hubspot.jinjava.doc;
public class JinjavaDocSnippet {
private final String desc;
private final String code;
private final String output;
public JinjavaDocSnippet(String desc, String code, String output) {
this.desc = desc;
this.code = code;
this.output = output;
}
public String getDesc() {
return desc;
}
public String getCode() {
return code;
}
public String getOutput() {
return output;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy