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

org.whitesource.agent.parser.ParseResult Maven / Gradle / Ivy

There is a newer version: 18.4.1
Show newest version
package org.whitesource.agent.parser;

/**
 * @author tom.shapira
 */
public class ParseResult {

    /* --- Members --- */

    /**
     * Doesn't resemble the file content in terms of spaces, tabs, indentation, but has the same content without comments.
     */
    private String contentWithoutComments;

    /**
     * Resembles the file content exactly but without comments in the header of the file.
     */
    private String contentWithoutHeaderComments;

    /* --- Getters / Setters --- */

    public String getContentWithoutComments() {
        return contentWithoutComments;
    }

    public void setContentWithoutComments(String contentWithoutComments) {
        this.contentWithoutComments = contentWithoutComments;
    }

    public String getContentWithoutHeaderComments() {
        return contentWithoutHeaderComments;
    }

    public void setContentWithoutHeaderComments(String contentWithoutHeaderComments) {
        this.contentWithoutHeaderComments = contentWithoutHeaderComments;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy