Uses of Interface
org.apache.velocity.app.event.EventHandler
-
Packages that use EventHandler Package Description org.apache.velocity.app.event org.apache.velocity.app.event.implement -
-
Uses of EventHandler in org.apache.velocity.app.event
Subinterfaces of EventHandler in org.apache.velocity.app.event Modifier and Type Interface Description interfaceIncludeEventHandlerEvent handler for include type directives (e.g.interfaceInvalidReferenceEventHandlerEvent handler called when an invalid reference is encountered.interfaceMethodExceptionEventHandlerEvent handler called when a method throws an exception.interfaceNullSetEventHandlerEvent handler called when the RHS of #set is null.interfaceReferenceInsertionEventHandlerReference 'Stream insertion' event handler.Methods in org.apache.velocity.app.event with parameters of type EventHandler Modifier and Type Method Description booleanEventCartridge. addEventHandler(EventHandler ev)Adds an event handler(s) to the Cartridge.voidEventHandlerMethodExecutor. execute(EventHandler handler)Execute the event handler method.voidIncludeEventHandler.IncludeEventExecutor. execute(EventHandler handler)Call the method includeEvent()voidInvalidReferenceEventHandler.InvalidGetMethodExecutor. execute(EventHandler handler)Call the method invalidGetMethod()voidInvalidReferenceEventHandler.InvalidMethodExecutor. execute(EventHandler handler)Call the method invalidMethod()voidInvalidReferenceEventHandler.InvalidSetMethodExecutor. execute(EventHandler handler)Call the method invalidSetMethod()voidMethodExceptionEventHandler.MethodExceptionExecutor. execute(EventHandler handler)Call the method methodException()voidNullSetEventHandler.ShouldLogOnNullSetExecutor. execute(EventHandler handler)Call the method shouldLogOnNullSet()voidReferenceInsertionEventHandler.referenceInsertExecutor. execute(EventHandler handler)Call the method referenceInsert()booleanEventCartridge. removeEventHandler(EventHandler ev)Removes an event handler(s) from the Cartridge. -
Uses of EventHandler in org.apache.velocity.app.event.implement
Classes in org.apache.velocity.app.event.implement that implement EventHandler Modifier and Type Class Description classEscapeHtmlReferenceEscape all HTML entities.classEscapeJavaScriptReferenceEscapes the characters in a String to be suitable for use in JavaScript.classEscapeReferenceBase class for escaping references.classEscapeSqlReferenceEscapes the characters in a String to be suitable to pass to an SQL query.classEscapeXmlReferenceEscape all XML entities.classIncludeNotFoundSimple event handler that checks to see if an included page is available.classIncludeRelativePathEvent handler that looks for included files relative to the path of the current template.classPrintExceptionsSimple event handler that renders method exceptions in the page rather than throwing the exception.classReportInvalidReferencesUse this event handler to flag invalid references.
-