com.cj.jshintmojo.cache.Result Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jshint-maven-plugin Show documentation
Show all versions of jshint-maven-plugin Show documentation
a maven mojo that integrates the 'jshint' javascript preprocessor
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;
}
}