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

kendal.api.impl.builders.AbstractBuilder Maven / Gradle / Ivy

The newest version!
package kendal.api.impl.builders;

import com.sun.tools.javac.tree.TreeMaker;

import kendal.api.AstUtils;

abstract class AbstractBuilder {
    final AstUtils astUtils;
    final TreeMaker treeMaker;

    AbstractBuilder(AstUtils astUtils, TreeMaker treeMaker) {
        this.astUtils = astUtils;
        this.treeMaker = treeMaker;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy