27 lines
874 B
Text
27 lines
874 B
Text
<%@ page import="org.thdl.lex.*,org.thdl.lex.component.*" %>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
|
|
<%@ taglib prefix="c_rt" uri="http://java.sun.com/jstl/core_rt" %>
|
|
<!--testing.jsf-->
|
|
|
|
<p>
|
|
You have reached the test page by specifying cmd=testing in your request. <br />
|
|
|
|
<c:forEach var="hi" items="${ requestScope.term.analyticalNotes }">
|
|
<c:out value="${ hi }" />
|
|
</c:forEach>
|
|
|
|
<%-- <%
|
|
TermTest component = (TermTest) request.getAttribute("termTest");
|
|
%>
|
|
|
|
Id: <%= component.getId() %> <br />
|
|
Term: <%= component.getTerm() %> <br />
|
|
Analytical Notes Hex: <%= component.getAnalyticalNotes().toString() %> <br />
|
|
|
|
|
|
Id: <c:out value="${ requestScope.termTest.id }" /> <br />
|
|
Term: <c:out value="${ requestScope.termTest.term }" /> <br />
|
|
Analytical Notes Hex: <c:out value="${ requestScope.termTest.analyticalNotes }" /> <br /> --%>
|
|
|
|
</p>
|
|
|