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

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

The newest version!
package kendal.api.builders;

import java.util.List;

import com.sun.tools.javac.tree.JCTree.JCBlock;
import com.sun.tools.javac.tree.JCTree.JCCatch;
import com.sun.tools.javac.tree.JCTree.JCTry;

import kendal.model.Node;

public interface TryBuilder {
    Node build(Node body, Node catchers);
    Node build(Node body, List> catchers);
    Node build(Node body, com.sun.tools.javac.util.List catchers);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy