| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||||
| IEditorBlockPage |
|
| 1.0;1 |
| 1 | package org.trails.page; |
|
| 2 | ||
| 3 | import org.apache.tapestry.IPage; |
|
| 4 | import org.trails.descriptor.IPropertyDescriptor; |
|
| 5 | ||
| 6 | ||
| 7 | public interface IEditorBlockPage extends IPage |
|
| 8 | { |
|
| 9 | ||
| 10 | Object getModel(); |
|
| 11 | ||
| 12 | void setModel(Object model); |
|
| 13 | ||
| 14 | IPropertyDescriptor getDescriptor(); |
|
| 15 | ||
| 16 | void setDescriptor(IPropertyDescriptor Descriptor); |
|
| 17 | ||
| 18 | String getEditPageName(); |
|
| 19 | ||
| 20 | void setEditPageName(String EditPageName); |
|
| 21 | } |