EMMA Coverage Report (generated Fri Sep 15 10:32:43 EDT 2006) |
---|
[all classes][edu.iu.uis.sit.portal.portlet.web] |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
PortletDecorator.java | 0% (0/1) | 0% (0/3) | 0% (0/20) | 0% (0/6) |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
class PortletDecorator | 0% (0/1) | 0% (0/3) | 0% (0/20) | 0% (0/6) |
PortletDecorator (): void | 0% (0/1) | 0% (0/3) | 0% (0/1) | |
finishRow (): String | 0% (0/1) | 0% (0/2) | 0% (0/1) | |
startRow (): String | 0% (0/1) | 0% (0/15) | 0% (0/4) |
1 | package edu.iu.uis.sit.portal.portlet.web; |
2 | |
3 | import org.displaytag.decorator.TableDecorator; |
4 | |
5 | public class PortletDecorator extends TableDecorator { |
6 | // public void init(PageContext pagecontext, Object o) { |
7 | // super.init(pagecontext, o); |
8 | // } |
9 | |
10 | public String startRow() { |
11 | StringBuffer tbody = new StringBuffer(); |
12 | tbody.append("<tbody onmouseover=\"this.className = 'over';\" "); |
13 | tbody.append("onmouseout=\"this.className = this.className.replace('over', '');\">"); |
14 | return tbody.toString(); |
15 | } |
16 | |
17 | public String finishRow() { |
18 | return "</tbody>"; |
19 | } |
20 | } |
[all classes][edu.iu.uis.sit.portal.portlet.web] |
EMMA 2.0.5312 (C) Vladimir Roubtsov |