| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| EditorBlockPage |
|
| 0.0;0 |
| 1 | package org.trails.page; |
|
| 2 | ||
| 3 | import org.apache.tapestry.AbstractPage; |
|
| 4 | import org.apache.tapestry.annotations.InjectObject; |
|
| 5 | import org.trails.validation.ValidatorTranslatorService; |
|
| 6 | ||
| 7 | /** |
|
| 8 | * This page contains all the default editor Blocks. This allows |
|
| 9 | * Trails to dynamically pick at runtime which editor to use for a |
|
| 10 | * specific property. |
|
| 11 | * |
|
| 12 | * @author Chris Nelson |
|
| 13 | */ |
|
| 14 | 0 | public abstract class EditorBlockPage extends AbstractPage implements IEditorBlockPage |
| 15 | { |
|
| 16 | ||
| 17 | @InjectObject("service:trails.core.ValidatorTranslatorService") |
|
| 18 | public abstract ValidatorTranslatorService getValidatorTranslatorService(); |
|
| 19 | ||
| 20 | } |