All Downloads are FREE. Search and download functionalities are using the official Maven repository.

services.SyntaxTreeServices Maven / Gradle / Ivy

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