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

com.cj.jshintmojo.cache.Result Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package com.cj.jshintmojo.cache;

import java.io.Serializable;
import java.util.List;

import com.cj.jshintmojo.jshint.JSHint.Error;

@SuppressWarnings("serial")
public class Result implements Serializable {
    public final String path;
    public final Long lastModified;
    public final List errors;
	
	public Result(String path, Long lastModified, List errors) {
		super();
		this.path = path;
		this.lastModified = lastModified;
		this.errors = errors;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy