268269270271272273274
* @param parentContext * The parent context, typically the component's context. * @return The new helper. */ public Helper createHelper(Application application, Context parentContext) { return new ApplicationHelper(application, parentContext); }
261262263264265266267
320321322323324325326
return new DirectoryResource(directory, request, response); } @Override public ApplicationHelper createHelper(Application application) { return new ApplicationHelper(application); }
321322323324325326327
271272273274275276277
* The parent context, typically the component's context. * @return The new helper. */ @Override public Helper createHelper(Application application, Context parentContext) { return new ApplicationHelper(application, parentContext); }