com.kotcrab.vis.usl.LexerContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vis-usl Show documentation
Show all versions of vis-usl Show documentation
UI styling language for scene2d.ui
package com.kotcrab.vis.usl;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
/** Class holding properties required for USL {@link Lexer} */
public class LexerContext {
final File workingDirectory;
final List tokens = new ArrayList();
int curliesLevel = 0;
public LexerContext (File workingDirectory) {
this.workingDirectory = workingDirectory;
}
}