1 13 package com.tonbeller.jpivot.table; 14 15 import javax.servlet.http.HttpSession ; 16 17 import com.tonbeller.jpivot.ui.Available; 18 import com.tonbeller.wcf.bookmarks.Bookmarkable; 19 import com.tonbeller.wcf.controller.RequestContext; 20 21 26 public interface PartBuilder extends Bookmarkable, Available { 27 28 31 void initialize(RequestContext context, TableComponent table) throws Exception ; 32 33 37 void destroy(HttpSession session) throws Exception ; 38 39 42 void startBuild(RequestContext context); 43 44 47 void stopBuild(); 48 49 53 boolean isAvailable(); 54 } 55 | Popular Tags |