01: package com.opensymphony.module.sitemesh.html.rules;
02:
03: /**
04: * Allows a TagRule to add information to a Page object.
05: *
06: * The standard HTML processing rules bundled with SiteMesh use this interface instead of direct coupling to the HTMLPage
07: * class, allowing the rules to be used for HTML processing in applications outside of SiteMesh.
08: *
09: * @author Joe Walnes
10: */
11: public interface PageBuilder {
12: void addProperty(String key, String value);
13: }
|