| | |
| | | * Returns true if the tool is enabled. |
| | | * @return true if the tool is enabled. |
| | | */ |
| | | public boolean getEnabled() { |
| | | public boolean isEnabled() { |
| | | return enabled; |
| | | } |
| | | |
| | |
| | | // Prepare a ClassLoader capable of loading the command-line tools. |
| | | final URLClassLoader toolsClassLoader = getBootToolsClassLoader(); |
| | | for (CommandLineTool tool : tools) { |
| | | if (tool.getEnabled()) { |
| | | if (tool.isEnabled()) { |
| | | generateManPageForTool(toolsClassLoader, tool); |
| | | } |
| | | } |
| | |
| | | </para> |
| | | |
| | | <para> |
| | | The following example shows two example messages from the recover log. |
| | | The following example shows two example messages from the recovery log. |
| | | The first message is written at the beginning of the recovery process. |
| | | The second message is written at the end of the process. |
| | | </para> |