com.opensymphony.module.sitemesh.parser.rules
public class: FramesetRule [javadoc |
source]
java.lang.Object
com.opensymphony.module.sitemesh.html.BasicRule
com.opensymphony.module.sitemesh.parser.rules.FramesetRule
All Implemented Interfaces:
TagRule
| Method from com.opensymphony.module.sitemesh.parser.rules.FramesetRule Summary: |
|---|
|
process, shouldProcess |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from com.opensymphony.module.sitemesh.parser.rules.FramesetRule Detail: |
public void process(Tag tag) {
page.setFrameSet(true);
}
|
public boolean shouldProcess(String name) {
return name.toLowerCase().startsWith("frame");
}
|