| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| HelpEnabledPreferencesPage |
|
| 1.0;1 |
| 1 | package org.xmlhammer.gui.util.preferences; |
|
| 2 | ||
| 3 | import org.bounce.preferences.PreferencesPage; |
|
| 4 | ||
| 5 | public abstract class HelpEnabledPreferencesPage extends PreferencesPage { |
|
| 6 | ||
| 7 | private static final long serialVersionUID = -3184851551114677222L; |
|
| 8 | ||
| 9 | public HelpEnabledPreferencesPage() { |
|
| 10 | 0 | this(null); |
| 11 | 0 | } |
| 12 | ||
| 13 | public HelpEnabledPreferencesPage(String title) { |
|
| 14 | 814 | super(title); |
| 15 | 814 | } |
| 16 | ||
| 17 | public abstract String getHelpID(); |
|
| 18 | } |
|
| 19 |