
edu.hm.hafner.analysis.registry.SimulinkCheckDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of analysis-model Show documentation
Show all versions of analysis-model Show documentation
This library provides a Java object model to read, aggregate, filter, and query static analysis reports.
It is used by Jenkins' warnings next generation plug-in to visualize the warnings of individual builds.
Additionally, this library is used by a GitHub action to autograde student software projects based on a given set of
metrics (unit tests, code and mutation coverage, static analysis warnings).
package edu.hm.hafner.analysis.registry;
import edu.hm.hafner.analysis.IssueParser;
import edu.hm.hafner.analysis.parser.SimulinkCheckParser;
/**
* A descriptor for Simulink Check tool by Mathworks.
*
* @author Eva Habeeb
*/
class SimulinkCheckDescriptor extends ParserDescriptor {
private static final String ID = "simulink-check-parser";
private static final String NAME = "Simulink Check Tool";
SimulinkCheckDescriptor() {
super(ID, NAME);
}
@Override
public IssueParser createParser(final Option... options) {
return new SimulinkCheckParser();
}
@Override
public String getUrl() {
return "https://www.mathworks.com/products/simulink-check.html";
}
@Override
public String getHelp() {
return "Reads and Parses HTML reports of Simulink Check Tool by MathWorks. "
+ "Report can be generated with command: "
+ "ModelAdvisor.summaryReport(ModelAdvisor.run(, , , ))
";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy