beehive/netui/test/webapps/jsf/web/dataStructure.jspf

19 lines
316 B
Plaintext
Raw Normal View History

<%
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;
}
}
%>