| com.salmonllc.jsp.JspController com.salmonllc.jsp.controller.BaseDetailController
All known Subclasses: com.salmonllc.jsp.controller.DetailFormController,
Method Summary | |
public HtmlComponent | assignComponentToUserComp(String compName) | public boolean | checkComponent(HtmlFormComponent comp, String itemName) This method checks the HTML form component passed into it to see the form field has been filled out and is valid. | public void | displayError(String message) This method calls the displayMessage method and passes the error message to it. | public void | displayError(String message, HtmlComponent focus) This method calls the displayMessage method and passes the error message to it. | public void | displayError(String message, HtmlComponent focus, int row) This method calls the displayMessage method and passes the error message to it. | public void | displayMessage(String message) This method calls an overloaded version of the displayMessage method and passes the message to it. | public void | displayMessage(String message, HtmlComponent focus) This method calls an overloaded version of the displayMessage method and passes the message to it. | public void | displayMessage(String message, boolean isError, HtmlComponent focus, int row) This method is used to display a message in the descendant class/page. | public HtmlComponent | getHtmlComponent(String name) | protected com.salmonllc.html.HtmlComponent | getMessageComponent() | protected String | getPrimaryKey(DataStore _ds) Insert the method's description here. | protected String | getPrimaryKeyName(DataStore _ds) Insert the method's description here. | public java.util.Hashtable | getUserComponents() | public void | initialize() | public boolean | onDetailError(int code, java.lang.String message, com.salmonllc.html.HtmlComponent component) Called when an error is encountered.
int If true, continue processing the event. | public boolean | pageAccess() This method verifies page access by returning TRUE. | public void | pageRequestEnd(PageEvent p) This method/event will get fired each time a page is requested by the browser. | public void | pageRequested(PageEvent p) Called before datastore retrieval. | public void | pageSubmitEnd(PageEvent p) This method occurs each time a page is sumbitted. | public void | pageSubmitted(PageEvent p) This method is called after a page has been submitted. | public boolean | postDetailDelete() Called before Delete button is processed. | public boolean | postDetailRequest() Called after pageRequested is processed. | public boolean | postDetailSave() Called before Save button is processed on Detail page. | public boolean | preDetailDelete() Called before Delete button is processed. | public boolean | preDetailRequest() Called before pageRequested() is processed. | public boolean | preDetailSave() Called before Save button is processed on Detail page. | public void | request(PageEvent p) This method is overridden in the descendant class/page. | public void | setMessageComponent(com.salmonllc.html.HtmlComponent newMessageComponent) | public void | setUserComponents(java.util.Hashtable newUserComponents) | public boolean | submitPerformed(SubmitEvent e) | public void | writeMessage(String message) This method is used to write a debug message to the Message Log in the descendant class/page. |
assignComponentToUserComp | public HtmlComponent assignComponentToUserComp(String compName)(Code) | | This method is used if component in detail form is needed to be mapped to any other component
Creation date: (8/16/01 5:02:34 PM)
com.salmonllc.html.HtmlComponent Parameters: compName - java.lang.String |
checkComponent | public boolean checkComponent(HtmlFormComponent comp, String itemName)(Code) | | This method checks the HTML form component passed into it to see the form field has been filled out and is valid.
Parameters: comp - HtmlFormComponent Parameters: itemName - java.lang.String boolean true |
displayError | public void displayError(String message)(Code) | | This method calls the displayMessage method and passes the error message to it.
Parameters: message - java.lang.String |
displayError | public void displayError(String message, HtmlComponent focus)(Code) | | This method calls the displayMessage method and passes the error message to it.
Parameters: message - java.lang.String Parameters: focus - com.salmonllc.html.HtmlComponent |
displayError | public void displayError(String message, HtmlComponent focus, int row)(Code) | | This method calls the displayMessage method and passes the error message to it.
Parameters: message - java.lang.String Parameters: focus - com.salmonllc.html.HtmlComponent Parameters: row - int |
displayMessage | public void displayMessage(String message)(Code) | | This method calls an overloaded version of the displayMessage method and passes the message to it.
Parameters: message - java.lang.String |
displayMessage | public void displayMessage(String message, HtmlComponent focus)(Code) | | This method calls an overloaded version of the displayMessage method and passes the message to it.
Parameters: focus - com.salmonllc.html.HtmlComponent |
displayMessage | public void displayMessage(String message, boolean isError, HtmlComponent focus, int row)(Code) | | This method is used to display a message in the descendant class/page.
Parameters: message - java.lang.String Parameters: focus - com.salmonllc.html.HtmlComponent Parameters: row - int |
getHtmlComponent | public HtmlComponent getHtmlComponent(String name)(Code) | | Gets all the User Components specified in Detail Form as a hastable
Creation date: (8/16/01 4:24:49 PM)
java.util.Hashtable |
getUserComponents | public java.util.Hashtable getUserComponents()(Code) | | Gets all the User Components specified in Detail Form as a hastable
Creation date: (8/16/01 4:24:49 PM)
java.util.Hashtable |
initialize | public void initialize() throws Exception(Code) | | This method creates the list form for maintaining brokers
|
onDetailError | public boolean onDetailError(int code, java.lang.String message, com.salmonllc.html.HtmlComponent component)(Code) | | Called when an error is encountered.
int If true, continue processing the event. Same convention as inValueChangedEvent.valueChanged(), SubmitEvent.submitPerformed(), etc. |
pageAccess | public boolean pageAccess()(Code) | | This method verifies page access by returning TRUE.
boolean |
pageRequestEnd | public void pageRequestEnd(PageEvent p) throws Exception(Code) | | This method/event will get fired each time a page is requested by the browser.
Parameters: p - PageEvent throws: Exception - |
pageSubmitEnd | public void pageSubmitEnd(PageEvent p)(Code) | | This method occurs each time a page is sumbitted.
Parameters: p - PageEvent |
pageSubmitted | public void pageSubmitted(PageEvent p)(Code) | | This method is called after a page has been submitted. It sets a URL for the user to be re-directed to after the page has been submitted.
Parameters: p - PageEvent |
postDetailDelete | public boolean postDetailDelete() throws java.lang.Exception(Code) | | Called before Delete button is processed.
boolean True if processing is to continue. |
postDetailRequest | public boolean postDetailRequest() throws java.lang.Exception(Code) | | Called after pageRequested is processed.
boolean Currently undefined. |
postDetailSave | public boolean postDetailSave() throws java.lang.Exception(Code) | | Called before Save button is processed on Detail page.
boolean True if continue to save, else do not continue. |
preDetailDelete | public boolean preDetailDelete() throws java.lang.Exception(Code) | | Called before Delete button is processed.
boolean True if processing is to continue. |
preDetailRequest | public boolean preDetailRequest() throws java.lang.Exception(Code) | | Called before pageRequested() is processed.
boolean True if continue processing, else stop processing. |
preDetailSave | public boolean preDetailSave() throws java.lang.Exception(Code) | | Called before Save button is processed on Detail page.
boolean True if continue to save, else do not continue. |
request | public void request(PageEvent p) throws Exception(Code) | | This method is overridden in the descendant class/page. It is used each time a user re-visits a page after the initial page generation by the initPage and createPage methods.
Parameters: p - PageEvent throws: Exception - |
setMessageComponent | public void setMessageComponent(com.salmonllc.html.HtmlComponent newMessageComponent)(Code) | | Sets the message component
Creation date: (10/26/01 5:17:41 AM)
Parameters: newMessageComponent - com.salmonllc.html.HtmlComponent |
setUserComponents | public void setUserComponents(java.util.Hashtable newUserComponents)(Code) | | Creation date: (8/16/01 4:24:49 PM)
Parameters: newUserComponents - java.util.Hashtable |
writeMessage | public void writeMessage(String message)(Code) | | This method is used to write a debug message to the Message Log in the descendant class/page.
The message written to the log is the String value passed into this method.
Parameters: message - java.lang.String |
Methods inherited from com.salmonllc.jsp.JspController | public void assignComponentToField(String fieldName, HtmlComponent comp, boolean addToPage)(Code)(Java Doc) public void assignDataSourceToField(String fieldName, DataStoreBuffer ds)(Code)(Java Doc) public void assignPropertyExpression(String component, String propName, String expression, DataStoreBuffer dataStore)(Code)(Java Doc) public void autoBindComponents() throws Exception(Code)(Java Doc) public void clearAllPagesFromSession()(Code)(Java Doc) public void clearAllPagesFromSessionButCurrent()(Code)(Java Doc) public void clearInitializing()(Code)(Java Doc) public void clearPageFromSession()(Code)(Java Doc) public String convertExpressionOperators(String expression)(Code)(Java Doc) public synchronized int doGet(HttpServletRequest req, boolean pre) throws Exception(Code)(Java Doc) public synchronized int doPost(HttpServletRequest req, HttpServletResponse res) throws Exception(Code)(Java Doc) public void forward(String url) throws IOException, ServletException(Code)(Java Doc) public void generateBodyHtml(JspWriter p) throws IOException(Code)(Java Doc) public void generateCode(PrintWriter pw, String controllerName) throws IOException(Code)(Java Doc) public void generateScriptHtml(JspWriter p) throws java.lang.Exception(Code)(Java Doc) public void generateSessionKeepAliveHtml(JspWriter p) throws IOException(Code)(Java Doc) public boolean getAddExpireHeaders()(Code)(Java Doc) public HtmlFormComponent getBoundComponent(DataStoreBuffer dsb, String columnName)(Code)(Java Doc) public HtmlComponent getComponent(String name)(Code)(Java Doc) public Hashtable getComponentTable()(Code)(Java Doc) public DataStoreBuffer getDataSource(String name)(Code)(Java Doc) public DataStoreBuffer getDataSource(Class c)(Code)(Java Doc) public Hashtable getDataSourceTable()(Code)(Java Doc) public Enumeration getDataSources()(Code)(Java Doc) public boolean getDoPostRedirected()(Code)(Java Doc) public boolean getHideAllComponents()(Code)(Java Doc) public boolean getKeepOnSession()(Code)(Java Doc) public String getOnClick()(Code)(Java Doc) public String getOnLoad()(Code)(Java Doc) public String getOnLoadFunction()(Code)(Java Doc) public PageContext getPageContext()(Code)(Java Doc) public String getPageURL()(Code)(Java Doc) public String getPageURLNoQueryString()(Code)(Java Doc) public int getRefIndex()(Code)(Java Doc) public JspController getSecondaryController()(Code)(Java Doc) public int getSessionKeepAliveMinutes()(Code)(Java Doc) public String getSessionKey()(Code)(Java Doc) public String getStyle()(Code)(Java Doc) public Vector getValidators()(Code)(Java Doc) public String getWebAppName()(Code)(Java Doc) public void gotoSiteMapActionPage(String logicalName, String actionName, String additionalParms) throws IOException, ServletException(Code)(Java Doc) public void gotoSiteMapActionPage(String actionName, String additionalParms) throws IOException, ServletException(Code)(Java Doc) public void gotoSiteMapActionPage(String actionName) throws IOException, ServletException(Code)(Java Doc) public void gotoSiteMapPage(String logicalName) throws IOException, ServletException(Code)(Java Doc) public void gotoSiteMapPage(String logicalName, String additionalParms) throws IOException, ServletException(Code)(Java Doc) public void incrementRefIndex()(Code)(Java Doc) public void initialize() throws Exception(Code)(Java Doc) public void initializeContainers() throws Exception(Code)(Java Doc) public boolean isExpired()(Code)(Java Doc) public boolean isIncludeIDAfterPost()(Code)(Java Doc) public boolean isInitialized()(Code)(Java Doc) public boolean isInitializing()(Code)(Java Doc) public boolean isReferredByCurrentPage()(Code)(Java Doc) public boolean isRequestFromForward()(Code)(Java Doc) public void loadProperties()(Code)(Java Doc) protected boolean notifyListeners(int event, boolean pre) throws Exception(Code)(Java Doc) public void printVars(PrintWriter p) throws IOException(Code)(Java Doc) public void recordTimerActivity(String name, long timeInMillis)(Code)(Java Doc) public void replaceComponent(String name, HtmlComponent newComponent)(Code)(Java Doc) public void replaceDataSource(String name, DataStoreBuffer newDs)(Code)(Java Doc) public void sendPageRedirect() throws IOException(Code)(Java Doc) public void sendPageRedirect(String anchor) throws IOException(Code)(Java Doc) public void sendRedirect(String url) throws IOException(Code)(Java Doc) public void setAddExpireHeaders(boolean val)(Code)(Java Doc) public void setApplicationName(String name)(Code)(Java Doc) public void setCurrentRequest(HttpServletRequest r)(Code)(Java Doc) public void setCurrentResponse(HttpServletResponse r)(Code)(Java Doc) public void setDoPostRedirected(boolean dopostredirected)(Code)(Java Doc) public void setHideAllComponents(boolean hideAllComponents)(Code)(Java Doc) public void setIncludeIDAfterPost(boolean includeIDAfterPost)(Code)(Java Doc) public void setInitialized()(Code)(Java Doc) public void setKeepOnSession(boolean keep)(Code)(Java Doc) public void setOnBlur(String script)(Code)(Java Doc) public void setOnClick(String script)(Code)(Java Doc) public void setOnFocus(String script)(Code)(Java Doc) public void setOnKeydown(String script)(Code)(Java Doc) public void setOnLoad(String script)(Code)(Java Doc) public void setOrigApplicationName(String name)(Code)(Java Doc) public void setPageContext(PageContext cont)(Code)(Java Doc) public void setPageExpired(boolean exp)(Code)(Java Doc) public void setPageName(String name)(Code)(Java Doc) public void setRemoveFromQueryString(String val)(Code)(Java Doc) public void setSecondaryController(JspController cont)(Code)(Java Doc) public void setServerURL(String url)(Code)(Java Doc) public void setServletBaseURL(String url)(Code)(Java Doc) public void setSession(HttpSession s)(Code)(Java Doc) public void setSessionExpired(boolean exp)(Code)(Java Doc) public void setSessionKeepAliveMinutes(int keepAliveMinutes)(Code)(Java Doc) public void setSessionKey(String key)(Code)(Java Doc) public void setStyle(String style)(Code)(Java Doc)
|
|
|