| uk.org.ponder.rsf.template.TemplateParseInterceptor
All known Subclasses: uk.org.ponder.rsf.template.NullTemplateParseInterceptor,
TemplateParseInterceptor | public interface TemplateParseInterceptor (Code) | | An interface invoked during parsing of a template file, to allow any
last-minute adjustment of attributes (typically, to "auto-mark-up" with
an rsf:id attribute where there may have been none).
author: Antranig Basman (antranig@caret.cam.ac.uk) |
Method Summary | |
public void | adjustAttributes(String tag, Map attributes) Invoked with a modifiable map of attributes encountered while parsing
a tag in a template file. |
adjustAttributes | public void adjustAttributes(String tag, Map attributes)(Code) | | Invoked with a modifiable map of attributes encountered while parsing
a tag in a template file. The implementor may perform any adjustment
to the map (although if the adjusted map does NOT contain the
XMLLump.ID_ATTRIBUTE , the adjustments will be ignored).
Do not cache the supplied map after the return of this method.
|
|
|