code.google.com home

Uses of Interface
org.owasp.html.HtmlChangeListener

Packages that use HtmlChangeListener
org.owasp.html An efficient HtmlSanitizer configurable via a flexible HtmlPolicyBuilder
 

Uses of HtmlChangeListener in org.owasp.html
 

Methods in org.owasp.html with parameters of type HtmlChangeListener
<CTX> HtmlSanitizer.Policy
PolicyFactory.apply(HtmlStreamEventReceiver out, HtmlChangeListener<CTX> listener, CTX context)
          Produces a sanitizer that emits tokens to out and that notifies any listener of any dropped tags and attributes.
<CTX> HtmlSanitizer.Policy
HtmlPolicyBuilder.build(HtmlStreamEventReceiver out, HtmlChangeListener<? super CTX> listener, CTX context)
          Produces a policy based on the allow and disallow calls previously made.
<CTX> java.lang.String
PolicyFactory.sanitize(java.lang.String html, HtmlChangeListener<CTX> listener, CTX context)
          A convenience function that sanitizes a string of HTML and reports the names of rejected element and attributes to listener.
 

Constructors in org.owasp.html with parameters of type HtmlChangeListener
HtmlChangeReporter(HtmlStreamEventReceiver renderer, HtmlChangeListener<? super T> listener, T context)
           
 


code.google.com home