| com.salmonllc.html.HtmlPage com.salmonllc.jsp.JspController
All known Subclasses: com.salmonllc.examples.example16.PersonalizationController, com.salmonllc.examples.example19.LookupController, com.salmonllc.examples.example6.ProductSearchController, com.salmonllc.examples.example3.InteractiveSQLController, com.salmonllc.examples.example7.NavigationBarController, com.salmonllc.jsp.controller.BaseListController, com.salmonllc.examples.example4.CalendarController, com.salmonllc.examples.example5.TreeController, com.salmonllc.examples.example17.ReportSelectionController, com.salmonllc.examples.example20.NestedController, com.salmonllc.examples.example8.ContactListController, com.salmonllc.examples.example19.CalendarLookupController, com.salmonllc.examples.example16.CustomizeSkinController, com.salmonllc.examples.example13.BeanController, com.salmonllc.examples.example12.JDBCExampleController, com.salmonllc.examples.example8.ContactDetailController, com.salmonllc.examples.example19.CalculatorLookupController, com.salmonllc.examples.example19.ContactLookupController, com.salmonllc.examples.DBConnectErrorController, com.salmonllc.examples.example10.InterController, com.salmonllc.jsp.controller.BaseDetailController, com.salmonllc.examples.example14.ListDataEntryController, com.salmonllc.examples.BaseController, com.salmonllc.examples.example17.ReportAppletController, com.salmonllc.examples.example11.GUIController,
JspController | public class JspController extends HtmlPage implements Constants(Code) | | This class is the ancestor of all JSP controllers. A subclass of this object
can be used to interface with a JSP Page containing Salmon custom tags. The
appropriate controller class is specified in "controller" attribute of the
JSP "page" custom tag. Each custom tag will be added to a Hashtable within
this object. In addition, if there are any public instance variables in the
page with the same name (preceeded with an underscore) and type as their
corresponding tag created components they will automatically be assigned by
the JSP engine.
For example a tag <page
controller="com.jspImplementation.ControllerSubClass"> would
attempt to create a subclass of this class named
com.jspImplementation.ControllerSubClass.
A tag in the page <text name="text1" text="Text">
would automatically assign a value to an instance variable in the page
described as public com.salmonllc.html.HtmlText _text1;
|
Method Summary | |
public void | assignComponentToField(String fieldName, HtmlComponent comp, boolean addToPage) This method should not be called directly. | public void | assignDataSourceToField(String fieldName, DataStoreBuffer ds) This method should not be called directly. | public void | assignPropertyExpression(String component, String propName, String expression, DataStoreBuffer dataStore) This method is called by the framework tag libraries to for the property
tag and should not be called directly in your application. | public void | autoBindComponents() This method will automatically match components in the JSP to datasources
in the JSP via the Datasource attribute. | public void | clearAllPagesFromSession() This method removes the pages from the session. | public void | clearAllPagesFromSessionButCurrent() This method removes the pages from the session except for the controller
calling the method. | public void | clearInitializing() | public void | clearPageFromSession() This method will remove all instances the current page from the session. | public String | convertExpressionOperators(String expression) | public synchronized int | doGet(HttpServletRequest req, boolean pre) This method should not be called directly. | public synchronized int | doPost(HttpServletRequest req, HttpServletResponse res) This method should not be called directly. | public void | forward(String url) Use this method to forward this request to another page. | public void | generateBodyHtml(JspWriter p) This method generates the Html for the body tag. | public void | generateCode(PrintWriter pw, String controllerName) | public void | generateScriptHtml(JspWriter p) This method should not be called directly. | public void | generateSessionKeepAliveHtml(JspWriter p) | public boolean | getAddExpireHeaders() | public HtmlFormComponent | getBoundComponent(DataStoreBuffer dsb, String columnName) | public HtmlComponent | getComponent(String name) | public Hashtable | getComponentTable() | public DataStoreBuffer | getDataSource(String name) | public DataStoreBuffer | getDataSource(Class c) | public Hashtable | getDataSourceTable() | public Enumeration | getDataSources() This method will return an enoumeration of DataStoreBuffers for of all
the datasources tags in the page. | public boolean | getDoPostRedirected() This method should not be called directly. | public boolean | getHideAllComponents() | public boolean | getKeepOnSession() Get whether or not a page will be stored on the session. | public String | getOnClick() This method returns some javascript to be executed each time the page is
clicked on. | public String | getOnLoad() | public String | getOnLoadFunction() This method should not be called directly. | public PageContext | getPageContext() | public String | getPageURL() | public String | getPageURLNoQueryString() | public int | getRefIndex() This method should not be called directly. | public JspController | getSecondaryController() This method returns a secondary controller if there is more than one
associated with the page or null if there isn't. | public int | getSessionKeepAliveMinutes() | public String | getSessionKey() This method should not be called directly. | public String | getStyle() | public Vector | getValidators() | public String | getWebAppName() | public void | gotoSiteMapActionPage(String logicalName, String actionName, String additionalParms) | public void | gotoSiteMapActionPage(String actionName, String additionalParms) | public void | gotoSiteMapActionPage(String actionName) | public void | gotoSiteMapPage(String logicalName) | public void | gotoSiteMapPage(String logicalName, String additionalParms) | public void | incrementRefIndex() This method should not be called directly. | public void | initialize() This method should not be called directly. | public void | initializeContainers() | public boolean | isExpired() | public boolean | isIncludeIDAfterPost() Returns the includeIDAfterPost flag. | public boolean | isInitialized() | public boolean | isInitializing() This method returns whether or not the page is currently initializing
(It's components are being created). | public boolean | isReferredByCurrentPage() Use this method to find out how this page was envoked. | public boolean | isRequestFromForward() | public void | loadProperties() | protected boolean | notifyListeners(int event, boolean pre) | public void | printVars(PrintWriter p) | public void | recordTimerActivity(String name, long timeInMillis) Records a timer activity. | public void | replaceComponent(String name, HtmlComponent newComponent) This method can be used to replace a component in the page with a
different Html Component. | public void | replaceDataSource(String name, DataStoreBuffer newDs) This method can be used to replace a datasource in the page with a
different DataStoreBuffer. | public void | sendPageRedirect() | public void | sendPageRedirect(String anchor) | public void | sendRedirect(String url) Use this method to send a redirect to the browser. | public void | setAddExpireHeaders(boolean val) | public void | setApplicationName(String name) | public void | setCurrentRequest(HttpServletRequest r) | public void | setCurrentResponse(HttpServletResponse r) | public void | setDoPostRedirected(boolean dopostredirected) This method should not be called directly. | public void | setHideAllComponents(boolean hideAllComponents) | public void | setIncludeIDAfterPost(boolean includeIDAfterPost) Parameters: includeIDAfterPost - If true, makes each page submit include an extra pagePostSerialID parameter on the URL line. | public void | setInitialized() | public void | setKeepOnSession(boolean keep) Set whether or not a page will be stored on the session. | public void | setOnBlur(String script) This method sets some javascript to be executed each time the page loses
focus. | public void | setOnClick(String script) This method sets some javascript to be executed each time the page is
clicked on. | public void | setOnFocus(String script) This method sets some javascript to be executed each time the page gets
the focus. | public void | setOnKeydown(String script) This method sets some javascript to be executed each time a key is
pressed. | public void | setOnLoad(String script) This method sets some javascript to be executed each time the page loads. | public void | setOrigApplicationName(String name) | public void | setPageContext(PageContext cont) Sets the context object for the current page. | public void | setPageExpired(boolean exp) This method should not be called directly. | public void | setPageName(String name) This method should not be called directly. | public void | setRemoveFromQueryString(String val) | public void | setSecondaryController(JspController cont) This method should not be called directly. | public void | setServerURL(String url) | public void | setServletBaseURL(String url) | public void | setSession(HttpSession s) | public void | setSessionExpired(boolean exp) | public void | setSessionKeepAliveMinutes(int keepAliveMinutes) Sets the number of minutes the client should keep the server session
alive for (-1=don't do keep alive, 0=keep session alive as long as the
browser is open) . | public void | setSessionKey(String key) This method should not be called directly. | public void | setStyle(String style) |
assignComponentToField | public void assignComponentToField(String fieldName, HtmlComponent comp, boolean addToPage)(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
assignDataSourceToField | public void assignDataSourceToField(String fieldName, DataStoreBuffer ds)(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
assignPropertyExpression | public void assignPropertyExpression(String component, String propName, String expression, DataStoreBuffer dataStore)(Code) | | This method is called by the framework tag libraries to for the property
tag and should not be called directly in your application.
|
autoBindComponents | public void autoBindComponents() throws Exception(Code) | | This method will automatically match components in the JSP to datasources
in the JSP via the Datasource attribute.
|
clearAllPagesFromSession | public void clearAllPagesFromSession()(Code) | | This method removes the pages from the session. That will force the
application to reinitialize the pages the next time they are visited.
|
clearAllPagesFromSessionButCurrent | public void clearAllPagesFromSessionButCurrent()(Code) | | This method removes the pages from the session except for the controller
calling the method. That will force the application to reinitialize the
pages the next time they are visited.
|
clearInitializing | public void clearInitializing()(Code) | | This method is called from the tag library when the page if finished
initializing
|
clearPageFromSession | public void clearPageFromSession()(Code) | | This method will remove all instances the current page from the session.
Future calls to the page will create and initialize a new page each time.
|
convertExpressionOperators | public String convertExpressionOperators(String expression)(Code) | | This method will convert the expression operators used in JSP tags to
normal datastore evaluator operators (ex: GREATER_THAN to >)
|
doGet | public synchronized int doGet(HttpServletRequest req, boolean pre) throws Exception(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
forward | public void forward(String url) throws IOException, ServletException(Code) | | Use this method to forward this request to another page. The browser URL
will stay the same as the current page.
Parameters: url - The page to forward to throws: IOException - |
generateBodyHtml | public void generateBodyHtml(JspWriter p) throws IOException(Code) | | This method generates the Html for the body tag.
|
generateCode | public void generateCode(PrintWriter pw, String controllerName) throws IOException(Code) | | This method will print a list of all the HtmlComponents in the page to
the print writer
|
generateScriptHtml | public void generateScriptHtml(JspWriter p) throws java.lang.Exception(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
getAddExpireHeaders | public boolean getAddExpireHeaders()(Code) | | |
getComponentTable | public Hashtable getComponentTable()(Code) | | This method returns a Hashtable of HtmlComponents keyed by the component
name
|
getDataSourceTable | public Hashtable getDataSourceTable()(Code) | | This method returns a Hashtable of DataStoreBuffers keyed by the
component name
|
getDataSources | public Enumeration getDataSources()(Code) | | This method will return an enoumeration of DataStoreBuffers for of all
the datasources tags in the page.
|
getDoPostRedirected | public boolean getDoPostRedirected()(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
getHideAllComponents | public boolean getHideAllComponents()(Code) | | Are all the components in the page invisible
|
getKeepOnSession | public boolean getKeepOnSession()(Code) | | Get whether or not a page will be stored on the session. Pages not stored
on the session will not persist from one request to the next, but will be
more memory efficient
|
getOnClick | public String getOnClick()(Code) | | This method returns some javascript to be executed each time the page is
clicked on.
|
getOnLoadFunction | public String getOnLoadFunction()(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
getPageContext | public PageContext getPageContext()(Code) | | Returns the context object for the current page
|
getPageURL | public String getPageURL()(Code) | | This returns the URL for the page
|
getPageURLNoQueryString | public String getPageURLNoQueryString()(Code) | | This returns the URL for the page not including the query string
|
getRefIndex | public int getRefIndex()(Code) | | This method should not be called directly. It is public so it can be
called from the InputTag class.
int |
getSecondaryController | public JspController getSecondaryController()(Code) | | This method returns a secondary controller if there is more than one
associated with the page or null if there isn't.
|
getSessionKeepAliveMinutes | public int getSessionKeepAliveMinutes()(Code) | | Returns the number of minutes the client should keep the serversession alive for (-1=don't do keep alive, 0=keep session aliveas long as the browser is open) . |
getSessionKey | public String getSessionKey()(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
getStyle | public String getStyle()(Code) | | Gets the sytle attribute for the page
|
getValidators | public Vector getValidators()(Code) | | Returns a vector of HtmlValidatorText components in the page or null if
there aren't any
|
getWebAppName | public String getWebAppName()(Code) | | Returns the web application the page is running in
|
gotoSiteMapActionPage | public void gotoSiteMapActionPage(String logicalName, String actionName, String additionalParms) throws IOException, ServletException(Code) | | Forwards or Redirects to the page specified in the site map entry action
Parameters: logicalName - The name of the entry in the site map Parameters: actionName - The name of the action to use Parameters: additionalParms - Any additional parameters that need to be appended to the url |
gotoSiteMapActionPage | public void gotoSiteMapActionPage(String actionName, String additionalParms) throws IOException, ServletException(Code) | | Forwards or Redirects to the page specified in the site map entry action
for the current page
Parameters: actionName - The name of the action to use Parameters: additionalParms - Any additional parameters that need to be appended to the url |
gotoSiteMapActionPage | public void gotoSiteMapActionPage(String actionName) throws IOException, ServletException(Code) | | Forwards or Redirects to the page specified in the site map entry action
for the current page
Parameters: actionName - The name of the action to use |
gotoSiteMapPage | public void gotoSiteMapPage(String logicalName) throws IOException, ServletException(Code) | | Forwards or Redirects to the page specified in the site map entry
Parameters: logicalName - The name of the entry in the site map |
gotoSiteMapPage | public void gotoSiteMapPage(String logicalName, String additionalParms) throws IOException, ServletException(Code) | | Forwards or Redirects to the page specified in the site map entry
Parameters: logicalName - The name of the entry in the site map Parameters: additionalParms - Any additional parameters that need to be appended to the url |
incrementRefIndex | public void incrementRefIndex()(Code) | | This method should not be called directly. It is public so it can be
called from the PagrTag class.
|
initialize | public void initialize() throws Exception(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
initializeContainers | public void initializeContainers() throws Exception(Code) | | Called from the framework, do not call directly
|
isExpired | public boolean isExpired()(Code) | | This method will indicate whether the page submitting a request is the
current one or has been retrieved from the browsers cache
|
isIncludeIDAfterPost | public boolean isIncludeIDAfterPost()(Code) | | Returns the includeIDAfterPost flag. If true, makes each page submit include an extra pagePostSerialID parameter on the URL line. This will insure that a new page will never come from the browser's cache, but the browser back button will treat each post as a seperate page. |
isInitialized | public boolean isInitialized()(Code) | | This method returns true if the controller's initialize method has been
called
|
isInitializing | public boolean isInitializing()(Code) | | This method returns whether or not the page is currently initializing
(It's components are being created).
|
isReferredByCurrentPage | public boolean isReferredByCurrentPage()(Code) | | Use this method to find out how this page was envoked. If it was invoked
from itself (via a submit button) the method will return true.
|
isRequestFromForward | public boolean isRequestFromForward()(Code) | | Returns true if the page has been requested from a JSP forward
|
loadProperties | public void loadProperties()(Code) | | |
notifyListeners | protected boolean notifyListeners(int event, boolean pre) throws Exception(Code) | | |
printVars | public void printVars(PrintWriter p) throws IOException(Code) | | This method will print a list of all the HtmlComponents in the page to
the print writer
|
recordTimerActivity | public void recordTimerActivity(String name, long timeInMillis)(Code) | | Records a timer activity. The average time for each named timer can be
viewed in the ConnectionMonitor Servlet
Parameters: name - The name of the timer Parameters: timeInMillis - The time in milliseconds that it took for an event to occur |
replaceComponent | public void replaceComponent(String name, HtmlComponent newComponent)(Code) | | This method can be used to replace a component in the page with a
different Html Component. For example a place holder component can be put
into the correct position in the JSP page and then replaced at run time
with a different one. The Html Generated by the replaced component will
then display in the page.
|
replaceDataSource | public void replaceDataSource(String name, DataStoreBuffer newDs)(Code) | | This method can be used to replace a datasource in the page with a
different DataStoreBuffer.
|
sendPageRedirect | public void sendPageRedirect() throws IOException(Code) | | This method will cause the browser to reload this page;
|
sendPageRedirect | public void sendPageRedirect(String anchor) throws IOException(Code) | | This method will cause the browser to reload this page and scroll to an
anchor;
|
sendRedirect | public void sendRedirect(String url) throws IOException(Code) | | Use this method to send a redirect to the browser. The browser will
display the redirected page
Parameters: url - The URL to redirect to throws: IOException - |
setAddExpireHeaders | public void setAddExpireHeaders(boolean val)(Code) | | |
setApplicationName | public void setApplicationName(String name)(Code) | | This method is called from the tag library to indicate that the page if
fully initialized
|
setCurrentRequest | public void setCurrentRequest(HttpServletRequest r)(Code) | | This method is called from the tag library to indicate that the page if
fully initialized
|
setCurrentResponse | public void setCurrentResponse(HttpServletResponse r)(Code) | | This method is called from the tag library to indicate that the page if
fully initialized
|
setDoPostRedirected | public void setDoPostRedirected(boolean dopostredirected)(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
setHideAllComponents | public void setHideAllComponents(boolean hideAllComponents)(Code) | | Set a flag to indicate whether all the components in the page should be
hidden
|
setIncludeIDAfterPost | public void setIncludeIDAfterPost(boolean includeIDAfterPost)(Code) | | Parameters: includeIDAfterPost - If true, makes each page submit include an extra pagePostSerialID parameter on the URL line. This will insure that a new page will never come from the browser's cache, but the browser back button will treat each post as a seperate page. |
setInitialized | public void setInitialized()(Code) | | This method is called from the tag library to indicate that the page if
fully initialized
|
setKeepOnSession | public void setKeepOnSession(boolean keep)(Code) | | Set whether or not a page will be stored on the session. Pages not stored
on the session will not persist from one request to the next, but will be
more memory efficient
|
setOnBlur | public void setOnBlur(String script)(Code) | | This method sets some javascript to be executed each time the page loses
focus.
|
setOnClick | public void setOnClick(String script)(Code) | | This method sets some javascript to be executed each time the page is
clicked on.
|
setOnFocus | public void setOnFocus(String script)(Code) | | This method sets some javascript to be executed each time the page gets
the focus.
|
setOnKeydown | public void setOnKeydown(String script)(Code) | | This method sets some javascript to be executed each time a key is
pressed.
|
setOnLoad | public void setOnLoad(String script)(Code) | | This method sets some javascript to be executed each time the page loads.
|
setOrigApplicationName | public void setOrigApplicationName(String name)(Code) | | |
setPageContext | public void setPageContext(PageContext cont)(Code) | | Sets the context object for the current page. Generally, this method is
called by other classes in the framework and does not need to be called
directly.
|
setPageExpired | public void setPageExpired(boolean exp)(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
setPageName | public void setPageName(String name)(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
setRemoveFromQueryString | public void setRemoveFromQueryString(String val)(Code) | | Framework method, do not call directly
|
setSecondaryController | public void setSecondaryController(JspController cont)(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
setServerURL | public void setServerURL(String url)(Code) | | This method is called from the tag library to indicate that the page if
fully initialized
|
setServletBaseURL | public void setServletBaseURL(String url)(Code) | | This method is called from the tag library to indicate that the page if
fully initialized
|
setSession | public void setSession(HttpSession s)(Code) | | This method is called from the tag library to indicate that the page if
fully initialized
|
setSessionExpired | public void setSessionExpired(boolean exp)(Code) | | This method is called from the tag library to indicate that the page if
fully initialized
|
setSessionKeepAliveMinutes | public void setSessionKeepAliveMinutes(int keepAliveMinutes)(Code) | | Sets the number of minutes the client should keep the server session
alive for (-1=don't do keep alive, 0=keep session alive as long as the
browser is open) .
|
setSessionKey | public void setSessionKey(String key)(Code) | | This method should not be called directly. It public so it can be called
from com.salmonllc.jsp.tags.
|
setStyle | public void setStyle(String style)(Code) | | Sets the sytle attribute for the page
|
Methods inherited from com.salmonllc.html.HtmlPage | public void add(HtmlComponent comp)(Code)(Java Doc) public void addHtml(String name, String html)(Code)(Java Doc) public void addNavBar(JspNavBar jspNavBar)(Code)(Java Doc) public void addPageListener(PageListener p)(Code)(Java Doc) public void addPopup(HtmlPopup popup)(Code)(Java Doc) public void addPropertyExpression(Object comp, String propertyName, DataStoreBuffer ds, DataStoreExpression propExpression) throws NoSuchMethodException, DataStoreException(Code)(Java Doc) public void addPropertyExpression(Object comp, String propertyName, DataStoreBuffer ds, String expression) throws NoSuchMethodException, DataStoreException(Code)(Java Doc) public void addPropertyExpression(Object comp, String propertyName, DataStoreEvaluator expEval) throws NoSuchMethodException, DataStoreException(Code)(Java Doc) public void addScript(String name, String script)(Code)(Java Doc) public void applySkin(Skin skin, boolean doSetTheme)(Code)(Java Doc) public void cancelRunThread()(Code)(Java Doc) public void clearCurrentPageReferer()(Code)(Java Doc) public void clearFormComponents()(Code)(Java Doc) public void clearPortletException()(Code)(Java Doc) public void clearPropertyExpressions()(Code)(Java Doc) public void displayPortletException(String ex)(Code)(Java Doc) public void displayPortletException(String ex, String font)(Code)(Java Doc) public static void executePropertyMethod(Object comp, Method meth, DataStoreEvaluator eval, int row)(Code)(Java Doc) public synchronized void generateHTML(PrintWriter p) throws Exception(Code)(Java Doc) public void generateImage(String compName, String imageName, OutputStream out) throws IOException(Code)(Java Doc) protected String generateToken()(Code)(Java Doc) public String getActivelinkColor()(Code)(Java Doc) public Vector getApplets()(Code)(Java Doc) public String getBackground()(Code)(Java Doc) public String getBackgroundColor()(Code)(Java Doc) public String getBaseTag()(Code)(Java Doc) public boolean getBooleanParameter(String name)(Code)(Java Doc) public Enumeration getComponents()(Code)(Java Doc) public HtmlSubmitButton getDefaultButton()(Code)(Java Doc) public String getDocumentType()(Code)(Java Doc) public boolean getEncodeURLs()(Code)(Java Doc) public int getFormType()(Code)(Java Doc) public boolean getGenerateFormTag()(Code)(Java Doc) public String getHoverLinkColor()(Code)(Java Doc) public ImageGenerator getImageGenerator(String compName)(Code)(Java Doc) public int getIntParameter(String name, int defaultValue)(Code)(Java Doc) public int getIntParameter(String name)(Code)(Java Doc) protected String getLastReferer()(Code)(Java Doc) protected JspForm getLastSubmitForm()(Code)(Java Doc) public int getLeftMargin()(Code)(Java Doc) public String getLinkColor()(Code)(Java Doc) public int getMarginHeight()(Code)(Java Doc) public int getMarginWidth()(Code)(Java Doc) public String getMetaTag()(Code)(Java Doc) public Vector getNavBarsVector()(Code)(Java Doc) public String getOnLoad()(Code)(Java Doc) public String getParameter(String name, String defaultValue)(Code)(Java Doc) public String getParameter(String name)(Code)(Java Doc) public HtmlLookUpComponent getPopupLookupComponent()(Code)(Java Doc) public int getPopupLookupComponentRow()(Code)(Java Doc) public SalmonPortletException getPortletException()(Code)(Java Doc) public static StringBuffer getRequestURL(javax.servlet.http.HttpServletRequest req)(Code)(Java Doc) public int getRightMargin()(Code)(Java Doc) public Exception getRunThreadException()(Code)(Java Doc) public int getRunThreadPercentComplete()(Code)(Java Doc) public int getRunThreadStatus()(Code)(Java Doc) public SiteMap getSiteMap()(Code)(Java Doc) public String getSiteMapActionURL(String logicalName, String actionName, String additionalParms, boolean javaScriptOK)(Code)(Java Doc) public String getSiteMapActionURL(String logicalName, String actionName)(Code)(Java Doc) public String getSiteMapEntryNameForPage()(Code)(Java Doc) public String getSiteMapURL(String logicalName)(Code)(Java Doc) public String getSiteMapURL(String logicalName, String additionalParms, boolean javaScriptOK)(Code)(Java Doc) public HtmlComponent getSubPage(String name)(Code)(Java Doc) public String getSubPageMimeType(String name)(Code)(Java Doc) public HtmlComponent getSubmitComponent()(Code)(Java Doc) public String getTextColor()(Code)(Java Doc) public String getTitle()(Code)(Java Doc) public HtmlContainer getTopContainer()(Code)(Java Doc) public int getTopMargin()(Code)(Java Doc) public boolean getUseIFrames()(Code)(Java Doc) public String getVisitedLinkColor()(Code)(Java Doc) public void handlePortletException(Exception ex, boolean logEx, boolean throwEx, String displayHTML) throws SalmonPortletException(Code)(Java Doc) public boolean isExpired()(Code)(Java Doc) public boolean isHtmlAdded(String name)(Code)(Java Doc) public boolean isReferredByCurrentPage()(Code)(Java Doc) public boolean isScriptAdded(String name)(Code)(Java Doc) public boolean isTokenValid()(Code)(Java Doc) public boolean isWMLMaintained()(Code)(Java Doc) public void loadProperties()(Code)(Java Doc) protected boolean notifyListeners(int event, boolean pre) throws Exception(Code)(Java Doc) public synchronized void processParms(boolean iFrameSubmit) throws Exception(Code)(Java Doc) protected void processPropertyExpressions()(Code)(Java Doc) public void registerImageGenerator(String key, ImageGenerator gen)(Code)(Java Doc) public void registerSubPage(String name, HtmlComponent comp)(Code)(Java Doc) public void registerSubPage(String name, HtmlComponent comp, String mimeType)(Code)(Java Doc) public void remove(HtmlComponent comp)(Code)(Java Doc) public void removePageListener(PageListener p)(Code)(Java Doc) public void resetComponents()(Code)(Java Doc) public void resetToken()(Code)(Java Doc) public void saveToken()(Code)(Java Doc) public void scrollToItem(String itemName)(Code)(Java Doc) public void setActiveLinkColor(String value)(Code)(Java Doc) public void setBackground(String value)(Code)(Java Doc) public void setBackgroundColor(String value)(Code)(Java Doc) public void setBaseTag(String value)(Code)(Java Doc) public void setDefaultButton(HtmlSubmitButton button)(Code)(Java Doc) public void setDocumentType(String sDocumentType)(Code)(Java Doc) public void setEncodeURLs(boolean encodeURLs)(Code)(Java Doc) public void setFormType()(Code)(Java Doc) public void setFormType(int type)(Code)(Java Doc) public void setGenerateFormTag(boolean gen)(Code)(Java Doc) public void setHoverLinkColor(String value)(Code)(Java Doc) public void setLeftMargin(int margin)(Code)(Java Doc) public void setLinkColor(String value)(Code)(Java Doc) public void setMarginHeight(int height)(Code)(Java Doc) public void setMarginWidth(int width)(Code)(Java Doc) public void setMetaTag(String value)(Code)(Java Doc) public void setOnLoad(String value)(Code)(Java Doc) public void setRightMargin(int margin)(Code)(Java Doc) public void setTextColor(String value)(Code)(Java Doc) public void setTitle(String title)(Code)(Java Doc) public void setTopMargin(int margin)(Code)(Java Doc) public void setVisitedLinkColor(String value)(Code)(Java Doc) public void setWMLMaintained(boolean isWmlMaintained)(Code)(Java Doc) public void startRunThread(PageRunThread r, int pageRefreshInterval)(Code)(Java Doc) public String toHex(byte buffer)(Code)(Java Doc) protected String trimUrl(String url, PortletInfo info)(Code)(Java Doc) protected String trimUrl(String url)(Code)(Java Doc) public void writeNamedHtml(Writer pw) throws IOException(Code)(Java Doc) public void writeNamedScripts(Writer pw) throws IOException(Code)(Java Doc) public void writeScript(String script)(Code)(Java Doc)
|
|
|