de.neuland.jade4j.lexer.token.When Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jade4j Show documentation
Show all versions of jade4j Show documentation
Java implementation of the jade templating language
package de.neuland.jade4j.lexer.token;
public class When extends Token {
public When(String value, int lineNumber) {
super(value, lineNumber);
}
}