19 lines
316 B
Plaintext
19 lines
316 B
Plaintext
<%
|
|
class Info {
|
|
public String _test;
|
|
public String _href;
|
|
public String _description;
|
|
public String _coverage;
|
|
|
|
public Info(String test, String href, String description,
|
|
String coverage)
|
|
{
|
|
_test = test;
|
|
_href = href;
|
|
_description = description;
|
|
_coverage = coverage;
|
|
}
|
|
}
|
|
%>
|
|
|