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

kendal.api.builders.VariableDeclBuilder Maven / Gradle / Ivy

The newest version!
package kendal.api.builders;

import java.util.List;

import com.sun.tools.javac.tree.JCTree;
import com.sun.tools.javac.tree.JCTree.JCExpression;
import com.sun.tools.javac.tree.JCTree.JCVariableDecl;
import com.sun.tools.javac.util.Name;

import kendal.api.Modifier;
import kendal.model.Node;

public interface VariableDeclBuilder {
     Node build(Node type, String name);

     Node build(Node type, Name name);

     Node build(Node type, String name,
            Node source);

     Node build(List modifiers, T type,
            Name name, Node source);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy