| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| ViewLink |
|
| 0.0;0 |
| 1 | package org.trails.link; |
|
| 2 | ||
| 3 | import org.trails.page.PageType; |
|
| 4 | import org.apache.tapestry.annotations.ComponentClass; |
|
| 5 | ||
| 6 | /** |
|
| 7 | * This component displays a link to the ViewPage for an object |
|
| 8 | */ |
|
| 9 | @ComponentClass |
|
| 10 | 0 | public abstract class ViewLink extends ModelLink |
| 11 | { |
|
| 12 | public PageType getPageType() |
|
| 13 | { |
|
| 14 | 0 | return PageType.VIEW; |
| 15 | } |
|
| 16 | } |