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 org.apache.velocity.runtime -
-
Uses of EventHandler in org.apache.velocity.app.event
Subinterfaces of EventHandler in org.apache.velocity.app.event Modifier and Type Interface Description interface
IncludeEventHandler
Event handler for include type directives (e.g.interface
InvalidReferenceEventHandler
Event handler called when an invalid reference is encountered.interface
MethodExceptionEventHandler
Event handler called when a method throws an exception.interface
NullSetEventHandler
Event handler called when the RHS of #set is null.interface
ReferenceInsertionEventHandler
Reference 'Stream insertion' event handler.Methods in org.apache.velocity.app.event with parameters of type EventHandler Modifier and Type Method Description boolean
EventCartridge. addEventHandler(EventHandler ev)
Adds an event handler(s) to the Cartridge.void
EventHandlerMethodExecutor. execute(EventHandler handler)
Execute the event handler method.void
IncludeEventHandler.IncludeEventExecutor. execute(EventHandler handler)
Call the method includeEvent()void
InvalidReferenceEventHandler.InvalidGetMethodExecutor. execute(EventHandler handler)
Call the method invalidGetMethod()void
InvalidReferenceEventHandler.InvalidMethodExecutor. execute(EventHandler handler)
Call the method invalidMethod()void
InvalidReferenceEventHandler.InvalidSetMethodExecutor. execute(EventHandler handler)
Call the method invalidSetMethod()void
MethodExceptionEventHandler.MethodExceptionExecutor. execute(EventHandler handler)
Call the method methodException()void
NullSetEventHandler.ShouldLogOnNullSetExecutor. execute(EventHandler handler)
Call the method shouldLogOnNullSet()void
ReferenceInsertionEventHandler.referenceInsertExecutor. execute(EventHandler handler)
Call the method referenceInsert()boolean
EventCartridge. 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 class
IncludeNotFound
Simple event handler that checks to see if an included page is available.class
IncludeRelativePath
Event handler that looks for included files relative to the path of the current template.class
PrintExceptions
Simple event handler that renders method exceptions in the page rather than throwing the exception.class
ReportInvalidReferences
Use this event handler to flag invalid references. -
Uses of EventHandler in org.apache.velocity.runtime
Methods in org.apache.velocity.runtime that return EventHandler Modifier and Type Method Description private EventHandler
RuntimeInstance. initializeSpecificEventHandler(java.lang.String classname, java.lang.String paramName, java.lang.Class EventHandlerInterface)
-