org.gridkit.jvmtool.ThreadDumpSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sjk-core Show documentation
Show all versions of sjk-core Show documentation
Core classes for Swiss Java Knife tool
package org.gridkit.jvmtool;
import java.util.List;
import org.gridkit.jvmtool.cli.CommandLauncher;
import com.beust.jcommander.Parameter;
public class ThreadDumpSource extends AbstractThreadDumpSource {
@Parameter(names={"-f", "--file"}, required = false, variableArity=true, description="Path to stack dump file")
private List files;
public ThreadDumpSource(CommandLauncher host) {
super(host);
}
@Override
protected List inputFiles() {
return files;
}
}