Java Doc for DetailForm.java in  » J2EE » Sofia » com » salmonllc » forms » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » Sofia » com.salmonllc.forms 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.salmonllc.html.HtmlComponent
      com.salmonllc.html.HtmlContainer
         com.salmonllc.forms.BaseForm
            com.salmonllc.forms.DetailForm

DetailForm
public class DetailForm extends BaseForm implements SubmitListener,ValueChangedListener,FileUploadListener(Code)
Implements Detail form. A display box is created containing a table with entry fields. Also created are submit buttons as follows:
- "Delete": the current row is removed from the database.
- "Save": the database is updated with the contents of the current row.
The form is implemented as a container to go within an instance of (a subclass of) HtmlPage. Specify as many data store columns as you want using the addColumn* methods.
To hook key activities such as the "Delete" button, implement the DetailFormListener interface and call addListener. NOTE: The addColumn* methods assume the new column is non-primary. Typically the client should explicitly specify the primary keys. For example,
 DetailForm form = new DetailForm(this, "UserDetailPage");
 DataStore ds = form.getDataStore();
 add(form);
 form.addColumn(_table, "user_id", "ID#", DataStore.DATATYPE_STRING, true, true);
 ds.setPrimaryKey(_table + ".user_id", true);
 // add other columns ...
 


Field Summary
final public static  intBUCKET
     addColumn flags parameter: Create a bucket using "column" parameter.
final public static  intERROR_ANY
    
final public static  intERROR_DUPLICATE_ROW
    
final public static  intERROR_EMPTY_FIELD
    
final public static  intERROR_INVALID_ENTRY
    
final public static  intINIT_NO_CANCEL_BUTTON
     constructor flags parameter: Do not create the default "Delete" button.
final public static  intINIT_NO_DELETE_BUTTON
     constructor flags parameter: Do not create the default "Delete" button.
final public static  intINIT_NO_PROCESSING
     constructor flags parameter: Do not process page requests.
final public static  intINIT_NO_SAVE_BUTTON
     constructor flags parameter: Do not create the default "Save" button.
final public static  intIS_REQUIRED
     addColumn flags parameter: Field is required.
final public static  intNO_DATASTORE
     addColumn flags parameter: Do not create a datastore column.
final public static  intPRIMARY_KEY
     addColumn flags parameter: Column is primary key.
final public static  intREAD_ONLY
     addColumn flags parameter: Component is read-only or display only.
final public static  intSAME_ROW
     addColumn flags parameter: Do not insert a line break, keep on same table row.
protected  HtmlComponent_btnCancel
    
protected  HtmlComponent_btnDelete
    
protected  HtmlComponent_btnSave
    
protected  String_mode
    
protected  boolean_noProcessing
    
public  HtmlTexthtErrorMessageComp
    

Constructor Summary
public  DetailForm(HtmlPage page)
     Constructor for DetailForm..
public  DetailForm(HtmlPage page, DataStore ds)
     Constructor for DetailForm..
public  DetailForm(HtmlPage page, DataStore ds, int flags)
     Constructor for DetailForm..

Method Summary
public  HtmlComponentaddBucket(String bucket, String caption, int type, int flags, HtmlComponent component, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Adds a bucket to the datastore and bind a given entry field, and add it to table.
Parameters:
  bucket - Name of bucket to add.
Parameters:
  caption - String Text of caption to use preceding entry field.
protected  HtmlTextaddCaption(String caption, int flags, HtmlTableCellProperties prop)
     Adds given caption to table, followed by ':'.
public  HtmlComponentaddColumn(String table, String column, String caption, int type, int flags)
     Adds a column to the datastore and create a corresponding entry or display field in the table, bound to the datastore.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field.
public  HtmlComponentaddColumn(String table, String column, String caption, int type, int flags, HtmlComponent component)
     Adds a column to the datastore and bind a given entry field, and add it to table.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field.
public  HtmlComponentaddColumn(String table, String column, String caption, int type, int flags, HtmlComponent component, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Adds a column to the datastore and bind a given entry field, and add it to table.
Parameters:
  table - String Name of table or bucket to add, or null if no DataStore binding.
Parameters:
  column - String Name of column to add.
Parameters:
  caption - String Text of caption to use preceding entry field.
public  HtmlComponentaddColumn(String table, String column, String caption, String defaultValue, int type, int flags)
     Adds a column to the datastore and create a corresponding entry or display field in the table, bound to the datastore.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field.
public  HtmlComponentaddColumn(String table, String column, String caption, String defaultValue, int type, int flags, HtmlComponent component, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Adds a column to the datastore and bind a given entry field, and add it to table.
Parameters:
  table - String Name of table or bucket to add, or null if no DataStore binding.
Parameters:
  column - String Name of column to add.
Parameters:
  caption - String Text of caption to use preceding entry field.
public  voidaddComponent(String caption, HtmlComponent component, int flags)
     Add a component to current position in table, without any data store processing.
public  voidaddComponent(String caption, HtmlComponent component, int flags, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Add a component to current position in table, without any data store processing.
protected  voidaddFormComponent(HtmlText caption, HtmlComponent component, int flags)
     Add a custom form component to the detail form.
public  HtmlDropDownListaddIntegerDropDown(String table, String column, String caption, int flags, int values, String displayValues)
     Adds a column to the datastore, using integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field.
public  HtmlDropDownListaddIntegerDropDown(String table, String column, String caption, int flags, int values, String displayValues, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Adds a column to the datastore, using integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field.
public  HtmlDropDownListaddIntegerDropDown(String table, String column, String caption, int flags, int values, String displayValues, boolean isMandatory)
     Adds a column to the datastore, using integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field.
public  HtmlRadioButtonGroupaddIntegerRadioButtonGroup(String table, String column, String caption, int flags, int values, String displayValues)
     Adds a column to the datastore, using an integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field.
public  HtmlRadioButtonGroupaddIntegerRadioButtonGroup(String table, String column, String caption, int flags, int values, String displayValues, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Adds a column to the datastore, using an integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field.
public  voidaddListener(DetailFormListener listener)
     Adds a DetailFormListener.
public  HtmlDropDownListaddPreInitDropDown(String table, String column, String caption, int flags, String initName, String descName, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc.
public  HtmlDropDownListaddPreInitDropDown(String table, String column, String caption, int flags, String initName, String initColumn, String descName, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc.
public  HtmlRadioButtonGroupaddPreInitRadioButtonGroup(String table, String column, String caption, int flags, String initName, String initColumn, String descName, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc.
public  HtmlDropDownListaddPreInitStringDropDown(String table, String column, String caption, int flags, String initName, String descName)
     Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc.
public  HtmlDropDownListaddPreInitStringDropDown(String table, String column, String caption, int flags, String initName, String descName, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc.
public  HtmlDropDownListaddPreInitStringDropDown(String table, String column, String caption, int flags, String tableName, String initName, String descName)
     Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc.
public  HtmlDropDownListaddPreInitStringDropDown(String table, String column, String caption, int flags, String initName, String initColumn, String descName, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc.
public  HtmlRadioButtonGroupaddPreInitStringRadioButtonGroup(String table, String column, String caption, int flags, String initName, String initColumn, String descName)
     Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc.
public  HtmlRadioButtonGroupaddPreInitStringRadioButtonGroup(String table, String column, String caption, int flags, String initName, String initColumn, String descName, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc.
public  HtmlDropDownListaddStringDropDown(String table, String column, String caption, int flags, String values, String displayValues)
     Adds a column to the datastore, using integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field.
public  HtmlDropDownListaddStringDropDown(String table, String column, String caption, int flags, String values, String displayValues, boolean isMandatory)
     Adds a column to the datastore, using integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field.
public  HtmlRadioButtonGroupaddStringRadioButtonGroup(String table, String column, String caption, int flags, String values, String displayValues)
     Adds a column to the datastore, using an integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field.
public  HtmlRadioButtonGroupaddStringRadioButtonGroup(String table, String column, String caption, int flags, String values, String displayValues, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop)
     Adds a column to the datastore, using an integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field.
protected  voidaddValueChangedListener(HtmlComponent c)
     Recursively adds ValueChangedListener.
public  voidfileUploaded(FileUploadEvent e)
    
protected  FormComponentfindFormComponent(HtmlComponent component)
     Used to find a previously added component.
public  HtmlTextgetCaption(HtmlComponent component)
     Get the cation component associated with the passed in HtmlComponent.
public  intgetCol()
     Used to get the current column index.
public  DataStoregetDataStore()
     Return the internal DataStore object.
public  HtmlDisplayBoxgetDisplayBox()
     Returns the display box component.
public  HtmlContainergetDisplayContainer()
     Returns container component which is main part of display box.
public  com.salmonllc.html.HtmlTextgetErrorMessageComp()
     Insert the method's description here.
public  intgetRow()
     Used to get the current row index.
public  HtmlTablegetTable()
     Returns the display table component.
protected  booleanhasComponent(HtmlContainer cont, HtmlComponent component)
     Recursively determins whether a container contains a component.
public  StringmakeName(String table, String column)
     Constructs a component name from table, column names.
public  voidpageRequested(PageEvent p)
     This event will get fired each time a page is requested by the browser.
protected  booleanprocessError(int code, String caption, HtmlComponent component)
     Process a user error condition.
public  voidsetCancelImage(HtmlSubmitImage img)
    
public  voidsetCancelImage(String imageUrl)
    
public  voidsetDeleteButtonDisplay(String name)
     Sets display name for Delete button.
public  voidsetDeleteImage(HtmlSubmitImage img)
    
public  voidsetDeleteImage(String imageUrl)
    
public  voidsetErrorMessageComp(com.salmonllc.html.HtmlText newErrorMessageComp)
     Insert the method's description here.
public  voidsetFileUploadDirectory(String sDirectory)
     Sets the directory to upload the file.
public  voidsetHeadingCaption(String text)
    
public  voidsetSaveButtonDisplay(String name)
     Sets display name for Save button.
public  voidsetSaveImage(HtmlSubmitImage img)
    
public  voidsetSaveImage(String imageUrl)
    
public  voidshowDeleteButton(boolean visible)
     Sets the visiblility of the default Delete button.
public  voidshowSaveButton(boolean visible)
     Sets the visiblility of the default Save button.
public  booleansubmitPerformed(SubmitEvent e)
     Inherited abstract method.
public  booleanvalidate()
     Validates entry fields according to current mode.
protected  booleanvalidateComponent(HtmlComponent comp, String name)
     Perform validation recursively on a component.
public  booleanvalueChanged(ValueChangedEvent e)
     This method checks the entered value to see if it passes validation test.

Field Detail
BUCKET
final public static int BUCKET(Code)
addColumn flags parameter: Create a bucket using "column" parameter.



ERROR_ANY
final public static int ERROR_ANY(Code)



ERROR_DUPLICATE_ROW
final public static int ERROR_DUPLICATE_ROW(Code)



ERROR_EMPTY_FIELD
final public static int ERROR_EMPTY_FIELD(Code)



ERROR_INVALID_ENTRY
final public static int ERROR_INVALID_ENTRY(Code)



INIT_NO_CANCEL_BUTTON
final public static int INIT_NO_CANCEL_BUTTON(Code)
constructor flags parameter: Do not create the default "Delete" button.



INIT_NO_DELETE_BUTTON
final public static int INIT_NO_DELETE_BUTTON(Code)
constructor flags parameter: Do not create the default "Delete" button.



INIT_NO_PROCESSING
final public static int INIT_NO_PROCESSING(Code)
constructor flags parameter: Do not process page requests.



INIT_NO_SAVE_BUTTON
final public static int INIT_NO_SAVE_BUTTON(Code)
constructor flags parameter: Do not create the default "Save" button.



IS_REQUIRED
final public static int IS_REQUIRED(Code)
addColumn flags parameter: Field is required.



NO_DATASTORE
final public static int NO_DATASTORE(Code)
addColumn flags parameter: Do not create a datastore column.



PRIMARY_KEY
final public static int PRIMARY_KEY(Code)
addColumn flags parameter: Column is primary key.



READ_ONLY
final public static int READ_ONLY(Code)
addColumn flags parameter: Component is read-only or display only.



SAME_ROW
final public static int SAME_ROW(Code)
addColumn flags parameter: Do not insert a line break, keep on same table row.



_btnCancel
protected HtmlComponent _btnCancel(Code)



_btnDelete
protected HtmlComponent _btnDelete(Code)



_btnSave
protected HtmlComponent _btnSave(Code)



_mode
protected String _mode(Code)



_noProcessing
protected boolean _noProcessing(Code)



htErrorMessageComp
public HtmlText htErrorMessageComp(Code)




Constructor Detail
DetailForm
public DetailForm(HtmlPage page)(Code)
Constructor for DetailForm.. This variant creates a default data store.
Parameters:
  page - com.salmonllc.html.HtmlPage Page containing the form.



DetailForm
public DetailForm(HtmlPage page, DataStore ds)(Code)
Constructor for DetailForm..
Parameters:
  page - com.salmonllc.html.HtmlPage Page containing the form.
Parameters:
  ds - DataStore DataStore to use; if null then create one.



DetailForm
public DetailForm(HtmlPage page, DataStore ds, int flags)(Code)
Constructor for DetailForm..
Parameters:
  page - Page containing the form.
Parameters:
  ds - DataStore to use; if null then create one.
Parameters:
  flags - Bitwise-OR combination of INIT_NO_SAVE_BUTTON, etc.




Method Detail
addBucket
public HtmlComponent addBucket(String bucket, String caption, int type, int flags, HtmlComponent component, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Adds a bucket to the datastore and bind a given entry field, and add it to table.
Parameters:
  bucket - Name of bucket to add.
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  type - int Type of datastore column--use DataStore.DATATYPE_* values.
Parameters:
  flags - int Flags.
Parameters:
  component - Use the given component for entry or display; if null thencreate a text entry field.
Parameters:
  propCaption - Properties for caption table cell.
Parameters:
  prop - Properties for data table cell.



addCaption
protected HtmlText addCaption(String caption, int flags, HtmlTableCellProperties prop)(Code)
Adds given caption to table, followed by ':'.
Parameters:
  caption - java.lang.String



addColumn
public HtmlComponent addColumn(String table, String column, String caption, int type, int flags) throws Exception(Code)
Adds a column to the datastore and create a corresponding entry or display field in the table, bound to the datastore.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  type - int Type of datastore column--use DataStore.DATATYPE_* values.
Parameters:
  flags - int Flags



addColumn
public HtmlComponent addColumn(String table, String column, String caption, int type, int flags, HtmlComponent component) throws Exception(Code)
Adds a column to the datastore and bind a given entry field, and add it to table.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  type - int Type of datastore column--use DataStore.DATATYPE_* values.
Parameters:
  flags - int Flags.
Parameters:
  component - Use the given component for the entry or display field.



addColumn
public HtmlComponent addColumn(String table, String column, String caption, int type, int flags, HtmlComponent component, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Adds a column to the datastore and bind a given entry field, and add it to table.
Parameters:
  table - String Name of table or bucket to add, or null if no DataStore binding.
Parameters:
  column - String Name of column to add.
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  type - int Type of datastore column--use DataStore.DATATYPE_* values.
Parameters:
  flags - int Flags.
Parameters:
  component - Use the given component for entry or display; if null thencreate a text entry field.
Parameters:
  propCaption - Properties for caption table cell.
Parameters:
  prop - Properties for data table cell.



addColumn
public HtmlComponent addColumn(String table, String column, String caption, String defaultValue, int type, int flags) throws Exception(Code)
Adds a column to the datastore and create a corresponding entry or display field in the table, bound to the datastore.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  type - int Type of datastore column--use DataStore.DATATYPE_* values.
Parameters:
  flags - int Flags



addColumn
public HtmlComponent addColumn(String table, String column, String caption, String defaultValue, int type, int flags, HtmlComponent component, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Adds a column to the datastore and bind a given entry field, and add it to table.
Parameters:
  table - String Name of table or bucket to add, or null if no DataStore binding.
Parameters:
  column - String Name of column to add.
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  type - int Type of datastore column--use DataStore.DATATYPE_* values.
Parameters:
  flags - int Flags.
Parameters:
  component - Use the given component for entry or display; if null thencreate a text entry field.
Parameters:
  propCaption - Properties for caption table cell.
Parameters:
  prop - Properties for data table cell.



addComponent
public void addComponent(String caption, HtmlComponent component, int flags) throws Exception(Code)
Add a component to current position in table, without any data store processing.
Parameters:
  caption - String Caption to precede table cell, or null
Parameters:
  component - HtmlComponent Component to add
Parameters:
  flags - int Flags



addComponent
public void addComponent(String caption, HtmlComponent component, int flags, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Add a component to current position in table, without any data store processing.
Parameters:
  caption - Caption to precede table cell, or null
Parameters:
  component - Component to add
Parameters:
  flags - Flags
Parameters:
  propCaption - Table cell properties for caption, or null
Parameters:
  prop - Table cell properties for data, or null



addFormComponent
protected void addFormComponent(HtmlText caption, HtmlComponent component, int flags)(Code)
Add a custom form component to the detail form. The regular addColumn just adds HtmlTextEdit's
Parameters:
  caption - java.lang.String
Parameters:
  component - com.salmonllc.html.HtmlComponent
Parameters:
  flags - int
Parameters:
  name - java.lang.String



addIntegerDropDown
public HtmlDropDownList addIntegerDropDown(String table, String column, String caption, int flags, int values, String displayValues) throws Exception(Code)
Adds a column to the datastore, using integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  flags - int Flags int[] values A list of values for the column. String[] dispValues A list of corresponding display values for each of the values for the column.



addIntegerDropDown
public HtmlDropDownList addIntegerDropDown(String table, String column, String caption, int flags, int values, String displayValues, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Adds a column to the datastore, using integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  flags - int Flags int[] values A list of values for the column. String[] dispValues A list of corresponding display values for each of the values for the column.
Parameters:
  propCaption - Table cell properties for caption, or null
Parameters:
  prop - Table cell properties for data, or null



addIntegerDropDown
public HtmlDropDownList addIntegerDropDown(String table, String column, String caption, int flags, int values, String displayValues, boolean isMandatory) throws Exception(Code)
Adds a column to the datastore, using integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  flags - int Flags int[] values A list of values for the column. String[] dispValues A list of corresponding display values for each of the values for the column.



addIntegerRadioButtonGroup
public HtmlRadioButtonGroup addIntegerRadioButtonGroup(String table, String column, String caption, int flags, int values, String displayValues) throws Exception(Code)
Adds a column to the datastore, using an integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  flags - int Flags int[] values A list of values for the column. String[] dispValues A list of corresponding display values for each of the values for the column.



addIntegerRadioButtonGroup
public HtmlRadioButtonGroup addIntegerRadioButtonGroup(String table, String column, String caption, int flags, int values, String displayValues, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Adds a column to the datastore, using an integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  flags - int Flags int[] values A list of values for the column. String[] dispValues A list of corresponding display values for each of the values for the column.
Parameters:
  propCaption - Properties for caption table cell.
Parameters:
  prop - Properties for data table cell.



addListener
public void addListener(DetailFormListener listener)(Code)
Adds a DetailFormListener.
Parameters:
  listener - com.salmonllc.forms.DetailFormListener



addPreInitDropDown
public HtmlDropDownList addPreInitDropDown(String table, String column, String caption, int flags, String initName, String descName, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc. 0 = default.
Parameters:
  initName - Name of table used to initialized, also name of its primary integer column.
Parameters:
  descName - Name of description column in initialization table.



addPreInitDropDown
public HtmlDropDownList addPreInitDropDown(String table, String column, String caption, int flags, String initName, String initColumn, String descName, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc. 0 = default.
Parameters:
  initName - Name of table used to initialized.
Parameters:
  initColumn - Name of primary integer column of initName table.
Parameters:
  descName - Name of description column in initialization table.



addPreInitRadioButtonGroup
public HtmlRadioButtonGroup addPreInitRadioButtonGroup(String table, String column, String caption, int flags, String initName, String initColumn, String descName, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc. 0 = default.
Parameters:
  initName - Name of table used to initialized.
Parameters:
  initColumn - Name of primary integer column of initName table.
Parameters:
  descName - Name of description column in initialization table.



addPreInitStringDropDown
public HtmlDropDownList addPreInitStringDropDown(String table, String column, String caption, int flags, String initName, String descName) throws Exception(Code)
Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc. 0 = default.
Parameters:
  initName - Name of table used to initialized, also name of its primary integer column.
Parameters:
  descName - Name of description column in initialization table.



addPreInitStringDropDown
public HtmlDropDownList addPreInitStringDropDown(String table, String column, String caption, int flags, String initName, String descName, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc. 0 = default.
Parameters:
  initName - Name of table used to initialized, also name of its primary integer column.
Parameters:
  descName - Name of description column in initialization table.



addPreInitStringDropDown
public HtmlDropDownList addPreInitStringDropDown(String table, String column, String caption, int flags, String tableName, String initName, String descName) throws Exception(Code)
Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc. 0 = default.
Parameters:
  initName - Name of table used to initialized, also name of its primary integer column.
Parameters:
  descName - Name of description column in initialization table.



addPreInitStringDropDown
public HtmlDropDownList addPreInitStringDropDown(String table, String column, String caption, int flags, String initName, String initColumn, String descName, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc. 0 = default.
Parameters:
  initName - Name of table used to initialized.
Parameters:
  initColumn - Name of primary integer column of initName table.
Parameters:
  descName - Name of description column in initialization table.



addPreInitStringRadioButtonGroup
public HtmlRadioButtonGroup addPreInitStringRadioButtonGroup(String table, String column, String caption, int flags, String initName, String initColumn, String descName) throws Exception(Code)
Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc. 0 = default.
Parameters:
  initName - Name of table used to initialized.
Parameters:
  initColumn - Name of primary integer column of initName table.
Parameters:
  descName - Name of description column in initialization table.



addPreInitStringRadioButtonGroup
public HtmlRadioButtonGroup addPreInitStringRadioButtonGroup(String table, String column, String caption, int flags, String initName, String initColumn, String descName, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Adds a column to the data store and list box, search box, or both. The column is of type integer and the display is a drop-down list which is preinitialized from a second table structured in a particular way.
Parameters:
  table - Name of table for datastore
Parameters:
  column - Name of column for datastore
Parameters:
  caption - Caption for search box and/or list box, or null
Parameters:
  flags - Bitwise-OR combination of PRIMARY_KEY, etc. 0 = default.
Parameters:
  initName - Name of table used to initialized.
Parameters:
  initColumn - Name of primary integer column of initName table.
Parameters:
  descName - Name of description column in initialization table.



addStringDropDown
public HtmlDropDownList addStringDropDown(String table, String column, String caption, int flags, String values, String displayValues) throws Exception(Code)
Adds a column to the datastore, using integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  flags - int Flags int[] values A list of values for the column. String[] dispValues A list of corresponding display values for each of the values for the column.



addStringDropDown
public HtmlDropDownList addStringDropDown(String table, String column, String caption, int flags, String values, String displayValues, boolean isMandatory) throws Exception(Code)
Adds a column to the datastore, using integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  flags - int Flags int[] values A list of values for the column. String[] dispValues A list of corresponding display values for each of the values for the column.



addStringRadioButtonGroup
public HtmlRadioButtonGroup addStringRadioButtonGroup(String table, String column, String caption, int flags, String values, String displayValues) throws Exception(Code)
Adds a column to the datastore, using an integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  flags - int Flags int[] values A list of values for the column. String[] dispValues A list of corresponding display values for each of the values for the column.



addStringRadioButtonGroup
public HtmlRadioButtonGroup addStringRadioButtonGroup(String table, String column, String caption, int flags, String values, String displayValues, HtmlTableCellProperties propCaption, HtmlTableCellProperties prop) throws Exception(Code)
Adds a column to the datastore, using an integer-type radio button group.
Parameters:
  table - String Name of table to add
Parameters:
  column - String Name of column to add
Parameters:
  caption - String Text of caption to use preceding entry field. If null, none.
Parameters:
  flags - int Flags int[] values A list of values for the column. String[] dispValues A list of corresponding display values for each of the values for the column.
Parameters:
  propCaption - Properties for caption table cell.
Parameters:
  prop - Properties for data table cell.



addValueChangedListener
protected void addValueChangedListener(HtmlComponent c)(Code)
Recursively adds ValueChangedListener.
Parameters:
  c - com.salmonllc.html.HtmlComponent



fileUploaded
public void fileUploaded(FileUploadEvent e)(Code)



findFormComponent
protected FormComponent findFormComponent(HtmlComponent component)(Code)
Used to find a previously added component. FormComponent
Parameters:
  name - java.lang.String



getCaption
public HtmlText getCaption(HtmlComponent component)(Code)
Get the cation component associated with the passed in HtmlComponent. FormComponent
Parameters:
  name - java.lang.String



getCol
public int getCol()(Code)
Used to get the current column index. int



getDataStore
public DataStore getDataStore()(Code)
Return the internal DataStore object. com.salmonllc.sql.DataStore



getDisplayBox
public HtmlDisplayBox getDisplayBox()(Code)
Returns the display box component. com.salmonllc.html.HtmlDisplayBox



getDisplayContainer
public HtmlContainer getDisplayContainer()(Code)
Returns container component which is main part of display box. com.salmonllc.html.HtmlContainer



getErrorMessageComp
public com.salmonllc.html.HtmlText getErrorMessageComp()(Code)
Insert the method's description here. Creation date: (5/7/02 5:29:03 PM) com.salmonllc.html.HtmlText



getRow
public int getRow()(Code)
Used to get the current row index. int



getTable
public HtmlTable getTable()(Code)
Returns the display table component. com.salmonllc.html.HtmlTable



hasComponent
protected boolean hasComponent(HtmlContainer cont, HtmlComponent component)(Code)
Recursively determins whether a container contains a component. boolean
Parameters:
  cont - com.salmonllc.html.HtmlContainer
Parameters:
  component - com.salmonllc.html.HtmlComponent



makeName
public String makeName(String table, String column)(Code)
Constructs a component name from table, column names. java.lang.String
Parameters:
  table - java.lang.String
Parameters:
  column - java.lang.String



pageRequested
public void pageRequested(PageEvent p) throws Exception(Code)
This event will get fired each time a page is requested by the browser.



processError
protected boolean processError(int code, String caption, HtmlComponent component)(Code)
Process a user error condition.
Parameters:
  code - int
Parameters:
  caption - java.lang.String
Parameters:
  component - com.salmonllc.html.HtmlComponent int If true, continue event processing.



setCancelImage
public void setCancelImage(HtmlSubmitImage img)(Code)
Replaces default cancel button (if any) with an image button
Parameters:
  imageUrl - URL of image.



setCancelImage
public void setCancelImage(String imageUrl)(Code)
Replaces default cancel button (if any) with an image button
Parameters:
  imageUrl - URL of image.



setDeleteButtonDisplay
public void setDeleteButtonDisplay(String name) throws Exception(Code)
Sets display name for Delete button.
Parameters:
  String - name



setDeleteImage
public void setDeleteImage(HtmlSubmitImage img)(Code)
Replaces default search button (if any) with an image button
Parameters:
  imageUrl - URL of image.



setDeleteImage
public void setDeleteImage(String imageUrl)(Code)
Replaces default search button (if any) with an image button
Parameters:
  imageUrl - URL of image.



setErrorMessageComp
public void setErrorMessageComp(com.salmonllc.html.HtmlText newErrorMessageComp)(Code)
Insert the method's description here. Creation date: (5/7/02 5:29:03 PM)
Parameters:
  newErrorMessageComp - com.salmonllc.html.HtmlText



setFileUploadDirectory
public void setFileUploadDirectory(String sDirectory)(Code)
Sets the directory to upload the file.
Parameters:
  String - sDirectory directory name.



setHeadingCaption
public void setHeadingCaption(String text)(Code)
This method sets the text for the heading on the component



setSaveButtonDisplay
public void setSaveButtonDisplay(String name) throws Exception(Code)
Sets display name for Save button.
Parameters:
  text - java.lang.String



setSaveImage
public void setSaveImage(HtmlSubmitImage img)(Code)
Replaces default add button (if any) with an image button
Parameters:
  imageUrl - URL of image.



setSaveImage
public void setSaveImage(String imageUrl)(Code)
Replaces default add button (if any) with an image button
Parameters:
  imageUrl - URL of image.



showDeleteButton
public void showDeleteButton(boolean visible)(Code)
Sets the visiblility of the default Delete button.
Parameters:
  visible - boolean



showSaveButton
public void showSaveButton(boolean visible)(Code)
Sets the visiblility of the default Save button.
Parameters:
  visible - boolean



submitPerformed
public boolean submitPerformed(SubmitEvent e) throws Exception(Code)
Inherited abstract method. boolean
Parameters:
  e - com.salmonllc.html.events.SubmitEvent



validate
public boolean validate() throws Exception(Code)
Validates entry fields according to current mode. True if validation was successful.



validateComponent
protected boolean validateComponent(HtmlComponent comp, String name)(Code)
Perform validation recursively on a component. boolean
Parameters:
  comp - com.salmonllc.html.HtmlComponent
Parameters:
  caption - java.lang.String



valueChanged
public boolean valueChanged(ValueChangedEvent e) throws Exception(Code)
This method checks the entered value to see if it passes validation test. boolean
Parameters:
  e - com.salmonllc.html.events.ValueChangedEvent



Fields inherited from com.salmonllc.forms.BaseForm
protected DataStore _ds(Code)(Java Doc)
protected HtmlLineBreak _line_break(Code)(Java Doc)

Methods inherited from com.salmonllc.forms.BaseForm
public HtmlDropDownList newIntegerDropDown(String name, int values, String displayValues)(Code)(Java Doc)
public HtmlDropDownList newStringDropDown(String name, String values, String displayValues)(Code)(Java Doc)
public void pageRequestEnd(PageEvent p) throws Exception(Code)(Java Doc)
public void pageRequested(PageEvent p) throws Exception(Code)(Java Doc)
public void pageSubmitEnd(PageEvent p)(Code)(Java Doc)
public void pageSubmitted(PageEvent p)(Code)(Java Doc)

Fields inherited from com.salmonllc.html.HtmlContainer
protected boolean _center(Code)(Java Doc)
protected Vector _componentsVec(Code)(Java Doc)
protected boolean _enabled(Code)(Java Doc)
protected HtmlComponent _submit(Code)(Java Doc)

Methods inherited from com.salmonllc.html.HtmlContainer
public void add(HtmlComponent comp)(Code)(Java Doc)
public void clearSubmit()(Code)(Java Doc)
public boolean executeEvent(int eventType) throws Exception(Code)(Java Doc)
public void generateHTML(PrintWriter p, int rowNo) throws Exception(Code)(Java Doc)
public void generateHTML(PrintWriter p, int rowStart, int rowEnd) throws Exception(Code)(Java Doc)
public void generateInitialHTML(PrintWriter p) throws Exception(Code)(Java Doc)
public boolean getCenter()(Code)(Java Doc)
public HtmlComponent getComponent(String name)(Code)(Java Doc)
public Enumeration getComponents()(Code)(Java Doc)
public boolean getEnabled()(Code)(Java Doc)
public HtmlComponent getSubmitComponent()(Code)(Java Doc)
public void insertComponentAt(HtmlComponent comp, int index)(Code)(Java Doc)
public boolean processParms(Hashtable parms, int rowNo) throws Exception(Code)(Java Doc)
public void remove(HtmlComponent comp)(Code)(Java Doc)
public void removeAll()(Code)(Java Doc)
public boolean replaceComponent(HtmlComponent comp, Object compToReplace)(Code)(Java Doc)
public void reset()(Code)(Java Doc)
public void setCenter(boolean center)(Code)(Java Doc)
public void setEnabled(boolean enabled)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Fields inherited from com.salmonllc.html.HtmlComponent
final public static int DISABLED_ATTRIBUTE_USE_NEVER(Code)(Java Doc)
final public static int DISABLED_ATTRIBUTE_USE_ON_SUPPORTED_BROWSERS(Code)(Java Doc)
final public static int DISABLED_ATTRIBUTE_USE_SYSTEM_DEFAULT(Code)(Java Doc)
final public static int EVENT_NONE(Code)(Java Doc)
final public static int EVENT_OTHER(Code)(Java Doc)
final public static int EVENT_SUBMIT(Code)(Java Doc)
protected String _class(Code)(Java Doc)
protected boolean _generateNewline(Code)(Java Doc)
protected HtmlComponent _parent(Code)(Java Doc)
protected boolean _visible(Code)(Java Doc)
final protected static boolean debug(Code)(Java Doc)

Methods inherited from com.salmonllc.html.HtmlComponent
public void doBinding() throws Exception(Code)(Java Doc)
public String encodeURL(String url)(Code)(Java Doc)
public StringBuffer encodeURL(StringBuffer url)(Code)(Java Doc)
public boolean executeEvent(int eventType) throws Exception(Code)(Java Doc)
public static String fixSpecialHTMLCharacters(String input)(Code)(Java Doc)
abstract public void generateHTML(PrintWriter p, int rowNo) throws Exception(Code)(Java Doc)
public void generateHTML(PrintWriter p, int rowStart, int rowEnd) throws Exception(Code)(Java Doc)
protected String generateImageURL()(Code)(Java Doc)
public void generateInitialHTML(PrintWriter p) throws Exception(Code)(Java Doc)
public String getClassName()(Code)(Java Doc)
public String getDataSource()(Code)(Java Doc)
public int getFormIndex()(Code)(Java Doc)
public String getFormString()(Code)(Java Doc)
public String getFullName()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public HtmlPage getPage()(Code)(Java Doc)
public HtmlComponent getParent()(Code)(Java Doc)
protected String getPortletNameSpace()(Code)(Java Doc)
protected String getSiteMapEntryName(String url)(Code)(Java Doc)
public String getTheme()(Code)(Java Doc)
public int getUseDisabledAttribute()(Code)(Java Doc)
public boolean getVisible()(Code)(Java Doc)
public boolean getVisible(boolean checkParents)(Code)(Java Doc)
public boolean processParms(Hashtable parms, int rowNo) throws Exception(Code)(Java Doc)
public void reset()(Code)(Java Doc)
public void setClassName(String sClass)(Code)(Java Doc)
public void setDataSource(String dataSource)(Code)(Java Doc)
public void setFormIndex(int formIndex)(Code)(Java Doc)
public void setGenerateNewline(boolean enable)(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void setPage(HtmlPage p)(Code)(Java Doc)
public void setParent(HtmlComponent parent)(Code)(Java Doc)
public void setTheme(String theme)(Code)(Java Doc)
public void setUseDisabledAttribute(int i)(Code)(Java Doc)
public void setVisible(boolean visible)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public String translateSiteMapURL(String url)(Code)(Java Doc)
protected boolean useDisabledAttribute()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.