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

mangoo.io.utils.Source Maven / Gradle / Ivy

package mangoo.io.utils;

/**
 *
 * @author svenkubiak
 *
 */
public class Source {
    private String content;
    private boolean cause;
    private int line;

    public Source(boolean cause, int line, String content) {
        this.cause = cause;
        this.line = line;
        this.content = content;
    }

    public boolean isCause() {
        return cause;
    }

    public int getLine() {
        return line;
    }

    public String getContent() {
        return content;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy