modif ds evaluation

Policy failures:   
Code warning
- failed on resource EvaluationController.java. Reason: ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized, line 100
- failed on resource EvaluationController.java. Reason: The local variable idd is never read, line 124
- failed on resource EvaluationController.java. Reason: Type safety: The expression of type ArrayList needs unchecked conversion to conform to List<Rating>, line 10
Override reason:   
o(∩_∩)o
This commit is contained in:
Jialin Wang
2008-02-04 23:10:55 +00:00
parent bf7cbab71a
commit d922edeaef
5 changed files with 88 additions and 11 deletions

View File

@@ -0,0 +1,21 @@
<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<h2><fmt:message key="evaluation.choose"/></h2>
<c:forEach items="${listArticle}" var="article">
<ul class="article">
<li class="title">Title: <a href="<c:url value="${article.URL_article}"/>">${article.title}</a></li>
<li class="author">Author: <b>${article.mainAuthor.firstName} ${article.mainAuthor.lastName}</b></li>
<li class="topic">Topic: <b>${article.topic}</b></li>
<li class="article_url"><a href="<c:url value="evaluation.htm?id=${article.id}"/>"><fmt:message key="evaluation.thisArticle"/></a></li>
</ul>
<br />
<hr />
<br />
</c:forEach>
</body>
</html>