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

com.github.javaparser.Processor Maven / Gradle / Ivy

package com.github.javaparser;

import com.github.javaparser.ast.Node;

public class Processor {
    /**
     * Makes the parser do a post-parsing step before the result is returned to the user.
     */
    public void postProcess(ParseResult result, ParserConfiguration configuration) {
        
    }

    /**
     *  Adds a pre-parsing step, which has access to the sourcecode through the innerProvider.
     */
    public Provider preProcess(Provider innerProvider) {
        return innerProvider;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy