@@ -290,8 +290,9 @@ public static Paragraph getListPar(Object parSys, int index) {
290290 * @param componentStyle component style
291291 * @param title title to use for the toolbar and placeholder
292292 * @throws IOException when can't write to jsp output
293+ * @throws ServletException when can't include epilog
293294 */
294- public static void includeEditRowStart (Resource resource , SlingHttpServletRequest slingRequest , SlingHttpServletResponse slingResponse , EditContext editContext , JspWriter out , Map <String , Object > componentStyle , String title ) throws IOException {
295+ public static void includeEditRowStart (Resource resource , SlingHttpServletRequest slingRequest , SlingHttpServletResponse slingResponse , EditContext editContext , JspWriter out , Map <String , Object > componentStyle , String title ) throws IOException , ServletException {
295296 //draw edit start placeholder
296297 WCMMode currentMode = WCMMode .fromRequest (slingRequest );
297298
@@ -331,8 +332,9 @@ public static void includeEditRowStart(Resource resource, SlingHttpServletReques
331332 * @param componentStyle component style
332333 * @param title title to use for the toolbar and placeholder
333334 * @throws IOException when can't write to jsp output
335+ * @throws ServletException when can't include epilog
334336 */
335- public static void includeEditRowEnd (Resource resource , SlingHttpServletRequest slingRequest , SlingHttpServletResponse slingResponse , EditContext editContext , JspWriter out , Map <String , Object > componentStyle , String title ) throws IOException {
337+ public static void includeEditRowEnd (Resource resource , SlingHttpServletRequest slingRequest , SlingHttpServletResponse slingResponse , EditContext editContext , JspWriter out , Map <String , Object > componentStyle , String title ) throws IOException , ServletException {
336338 //draw edit start placeholder
337339 WCMMode currentMode = WCMMode .fromRequest (slingRequest );
338340
@@ -378,8 +380,9 @@ public static void includeEditRowEnd(Resource resource, SlingHttpServletRequest
378380 * @param componentStyle component styles map
379381 * @param title title
380382 * @throws IOException when can't write to jsp output
383+ * @throws ServletException when can't include epilog
381384 */
382- public static void includeEditContext (Resource resource , SlingHttpServletRequest slingRequest , SlingHttpServletResponse slingResponse , EditContext editContext , JspWriter out , Map <String , Object > componentStyle , String title ) throws IOException {
385+ public static void includeEditContext (Resource resource , SlingHttpServletRequest slingRequest , SlingHttpServletResponse slingResponse , EditContext editContext , JspWriter out , Map <String , Object > componentStyle , String title ) throws IOException , ServletException {
383386
384387 out .flush ();
385388
0 commit comments