Explainations for the new option resetting feature

This commit is contained in:
Andrea Aime 2005-12-28 15:17:29 +00:00
parent 7111a8e37b
commit 143fef34f1
1 changed files with 12 additions and 0 deletions

View File

@ -132,4 +132,16 @@ using <code>@opt</code> attributes on individual classes.
In this case the <code>@opt</code> specification temporarily overrides
the particular global setting for the class being processed.
<p/>Finally, you can reset an option to its default value by prefixing it
with an exclamation mark. For example:
<fmtcode ext="java">
/**
* @opt !attributes
* @opt !nodefontsize
*/
class MyClass {}
</fmtcode>
will disable attribute listing for MyClass, and reset the node font size
to its default value (10).
</notes>