services.SyntaxTreeServices Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsyntaxtree Show documentation
Show all versions of jsyntaxtree Show documentation
Syntax tree representation of the JASS language
The newest version!
package services;
import interfaces.IPreprocessFileService;
import interfaces.IRandomNameGeneratorService;
public final class SyntaxTreeServices {
public static IPreprocessFileService defaultPreprocessor() {
return new PreprocessFileService();
}
public static IRandomNameGeneratorService defaultRandomNameGenerator() {
return new RandomNameGeneratorService();
}
private SyntaxTreeServices() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy