validators
Class DebugValidator
java.lang.Object
javax.servlet.jsp.tagext.TagLibraryValidator
validators.DebugValidator
- public class DebugValidator
- extends TagLibraryValidator
Example tag library validator that simply dumps the XML version of each
page to standard output (which will typically be sent to the file
$CATALINA_HOME/logs/catalina.out
). To utilize it, simply
include a taglib
directive for this tag library at the top
of your JSP page.
- Version:
- $Revision: 267129 $ $Date: 2004-03-18 08:40:35 -0800 (Thu, 18 Mar 2004) $
- Author:
- Craig McClanahan
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DebugValidator
public DebugValidator()
validate
public ValidationMessage[] validate(String prefix,
String uri,
PageData page)
- Validate a JSP page. This will get invoked once per directive in the
JSP page. This method will return
null
if the page is
valid; otherwise the method should return an array of
ValidationMessage
objects. An array of length zero is
also interpreted as no errors.
- Parameters:
prefix
- The value of the prefix argument in this directiveuri
- The value of the URI argument in this directivepage
- The page data for this page
Copyright © 2006 Apache Software Foundation. All Rights Reserved.