Author: vkukharchuk
Date: 2007-05-03 04:46:51 -0400 (Thu, 03 May 2007)
New Revision: 622
Modified:
trunk/docs/userguide/en/included/column.xml
trunk/docs/userguide/en/included/columnGroup.xml
trunk/docs/userguide/en/included/dataFilterSlider.xml
trunk/docs/userguide/en/included/dataGrid.xml
trunk/docs/userguide/en/included/dataList.xml
trunk/docs/userguide/en/included/dataOrderedList.xml
trunk/docs/userguide/en/included/dataTable.xml
trunk/docs/userguide/en/included/datascroller.xml
trunk/docs/userguide/en/included/dndParam.xml
trunk/docs/userguide/en/included/dragIndicator.xml
trunk/docs/userguide/en/included/dragIndicator1.xml
trunk/docs/userguide/en/included/dropSupport.xml
trunk/docs/userguide/en/included/gmap.xml
trunk/docs/userguide/en/included/inputNumberSlider.xml
trunk/docs/userguide/en/included/inputNumberSpinner.xml
trunk/docs/userguide/en/included/modalPanel.xml
trunk/docs/userguide/en/included/paint2D.xml
trunk/docs/userguide/en/included/panel.xml
trunk/docs/userguide/en/included/panelBar.xml
trunk/docs/userguide/en/included/panelBarItem.xml
trunk/docs/userguide/en/included/separator.xml
trunk/docs/userguide/en/included/simpleTogglePanel.xml
trunk/docs/userguide/en/included/spacer.xml
trunk/docs/userguide/en/included/subTable.xml
trunk/docs/userguide/en/included/suggestionBox.xml
trunk/docs/userguide/en/included/tab.xml
trunk/docs/userguide/en/included/tabPanel.xml
trunk/docs/userguide/en/included/toggleControl.xml
trunk/docs/userguide/en/included/togglePanel.xml
trunk/docs/userguide/en/included/toolBar.xml
trunk/docs/userguide/en/included/toolBarGroup.xml
trunk/docs/userguide/en/included/tree.xml
trunk/docs/userguide/en/included/treeNode.xml
trunk/docs/userguide/en/modules/RFCtechreqs.xml
Log:
Modified: trunk/docs/userguide/en/included/column.xml
===================================================================
--- trunk/docs/userguide/en/included/column.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/column.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -57,9 +57,10 @@
</section>
<section>
<title>Dynamical Creation from Java Code</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlColumn myColumn = new
org.richfaces.component.html.HtmlColumn();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlColumn;
...
+HtmlColumn myColumn = new HtmlColumn();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/columnGroup.xml
===================================================================
--- trunk/docs/userguide/en/included/columnGroup.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/columnGroup.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -61,8 +61,9 @@
</section>
<section>
<title>Dynamical Creation from Java Code</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlColumnGroup myRow = new
org.richfaces.component.html.HtmlColumnGroup();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlColumnGroup;
+...
+HtmlColumnGroup myRow = new HtmlColumnGroup();
...
]]></programlisting>
</section>
Modified: trunk/docs/userguide/en/included/dataFilterSlider.xml
===================================================================
--- trunk/docs/userguide/en/included/dataFilterSlider.xml 2007-05-03 07:50:22 UTC (rev
621)
+++ trunk/docs/userguide/en/included/dataFilterSlider.xml 2007-05-03 08:46:51 UTC (rev
622)
@@ -50,9 +50,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmldataFilterSlider mySlider = new
org.richfaces.component.html.HtmldataFilterSlider();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmldataFilterSlider;
...
+HtmldataFilterSlider mySlider = new HtmldataFilterSlider();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/dataGrid.xml
===================================================================
--- trunk/docs/userguide/en/included/dataGrid.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/dataGrid.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -54,9 +54,10 @@
</section>
<section>
<title>Dynamical Creation from Java Code</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlDataGrid myList = new
org.richfaces.component.html.HtmlDataGrid();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlDataGrid;
...
+HtmlDataGrid myList = new HtmlDataGrid();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/dataList.xml
===================================================================
--- trunk/docs/userguide/en/included/dataList.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/dataList.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -55,9 +55,10 @@
</section>
<section>
<title>Dynamical Creation from Java Code</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlDataList myList = new
org.richfaces.component.html.HtmlDataList();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlDataList;
...
+HtmlDataList myList = new HtmlDataList();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/dataOrderedList.xml
===================================================================
--- trunk/docs/userguide/en/included/dataOrderedList.xml 2007-05-03 07:50:22 UTC (rev
621)
+++ trunk/docs/userguide/en/included/dataOrderedList.xml 2007-05-03 08:46:51 UTC (rev
622)
@@ -54,8 +54,9 @@
</section>
<section>
<title>Dynamical Creation from Java Code</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlDataOrderedList myList = new
org.richfaces.component.html.HtmlDataOrderedList();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlDataOrderedList;
+...
+HtmlDataOrderedList myList = new HtmlDataOrderedList();
...
]]></programlisting>
</section>
Modified: trunk/docs/userguide/en/included/dataTable.xml
===================================================================
--- trunk/docs/userguide/en/included/dataTable.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/dataTable.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -56,9 +56,10 @@
</section>
<section>
<title>Dynamical creation from Java code</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlDataTable myTable = new
org.richfaces.component.html.HtmlDataTable();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlDataTable;
...
+HtmlDataTable myTable = new HtmlDataTable();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/datascroller.xml
===================================================================
--- trunk/docs/userguide/en/included/datascroller.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/datascroller.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -58,8 +58,9 @@
</section>
<section>
<title>Dynamical creation from Java code</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlDatascroller myScroll = new
org.richfaces.component.html.HtmlDatascroller();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlDatascroller;
+...
+HtmlDatascroller myScroll = new HtmlDatascroller();
...
]]></programlisting>
</section>
Modified: trunk/docs/userguide/en/included/dndParam.xml
===================================================================
--- trunk/docs/userguide/en/included/dndParam.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/dndParam.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -66,9 +66,10 @@
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA">...
-org.richfaces.component.html.HtmlDndParam myDparam = new
org.richfaces.component.html.HtmlDndParam();
+ <programlisting role="JAVA">import
org.richfaces.component.html.HtmlDndParam;
...
+HtmlDndParam myDparam = new HtmlDndParam();
+...
</programlisting>
</section>
Modified: trunk/docs/userguide/en/included/dragIndicator.xml
===================================================================
--- trunk/docs/userguide/en/included/dragIndicator.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/dragIndicator.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -61,9 +61,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlDragIndicator myDragIndicator = new
org.richfaces.component.html.HtmlDragIndicator();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlDragIndicator;
...
+HtmlDragIndicator myDragIndicator = new HtmlDragIndicator();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/dragIndicator1.xml
===================================================================
--- trunk/docs/userguide/en/included/dragIndicator1.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/dragIndicator1.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -60,8 +60,8 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlDragIndicator myDragIndicator = new
org.richfaces.component.html.HtmlDragIndicator();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlDragIndicator;
+HtmlDragIndicator myDragIndicator = new HtmlDragIndicator();
...
]]></programlisting>
</section>
Modified: trunk/docs/userguide/en/included/dropSupport.xml
===================================================================
--- trunk/docs/userguide/en/included/dropSupport.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/dropSupport.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -74,9 +74,10 @@
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA">...
- org.richfaces.component.html.HtmlDropSupport myDragZone = new
org.richfaces.component.html.HtmlDropSupport();
+ <programlisting role="JAVA">import
org.richfaces.component.html.HtmlDropSupport;
...
+HtmlDropSupport myDragZone = new HtmlDropSupport();
+...
</programlisting>
</section>
Modified: trunk/docs/userguide/en/included/gmap.xml
===================================================================
--- trunk/docs/userguide/en/included/gmap.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/gmap.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -52,9 +52,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlGmap myMap = new
org.richfaces.component.html.HtmlGmap();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlGmap;
...
+HtmlGmap myMap = new HtmlGmap();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/inputNumberSlider.xml
===================================================================
--- trunk/docs/userguide/en/included/inputNumberSlider.xml 2007-05-03 07:50:22 UTC (rev
621)
+++ trunk/docs/userguide/en/included/inputNumberSlider.xml 2007-05-03 08:46:51 UTC (rev
622)
@@ -52,9 +52,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlInputNumberSlider mySlider = new
org.richfaces.component.html.HtmlInputNumberSlider();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlInputNumberSlider;
...
+HtmlInputNumberSlider mySlider = new HtmlInputNumberSlider();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/inputNumberSpinner.xml
===================================================================
--- trunk/docs/userguide/en/included/inputNumberSpinner.xml 2007-05-03 07:50:22 UTC (rev
621)
+++ trunk/docs/userguide/en/included/inputNumberSpinner.xml 2007-05-03 08:46:51 UTC (rev
622)
@@ -52,9 +52,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlInputNumberSpinner mySpinner = new
org.richfaces.component.html.HtmlInputNumberSpinner ();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlInputNumberSpinner;
...
+HtmlInputNumberSpinner mySpinner = new HtmlInputNumberSpinner ();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/modalPanel.xml
===================================================================
--- trunk/docs/userguide/en/included/modalPanel.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/modalPanel.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -80,9 +80,10 @@
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA">...
- org.richfaces.component.html.HtmlModalPanel myPanel = new
org.richfaces.component.html.HtmlModalPanel();
+ <programlisting role="JAVA">import
org.richfaces.component.html.HtmlModalPanel;
...
+HtmlModalPanel myPanel = new HtmlModalPanel();
+...
</programlisting>
</section>
Modified: trunk/docs/userguide/en/included/paint2D.xml
===================================================================
--- trunk/docs/userguide/en/included/paint2D.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/paint2D.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -58,9 +58,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlPaint2D myImage = new
org.richfaces.component.html.HtmlPaint2D();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlPaint2D;
...
+HtmlPaint2D myImage = new HtmlPaint2D();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/panel.xml
===================================================================
--- trunk/docs/userguide/en/included/panel.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/panel.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -58,9 +58,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlPanel myPanel = new
org.richfaces.component.html.HtmlPanel();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlPanel;
...
+HtmlPanel myPanel = new HtmlPanel();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/panelBar.xml
===================================================================
--- trunk/docs/userguide/en/included/panelBar.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/panelBar.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -60,9 +60,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlPanelBar myBar = new
org.richfaces.component.html.HtmlPanelBar();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlPanelBar;
...
+HtmlPanelBar myBar = new HtmlPanelBar();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/panelBarItem.xml
===================================================================
--- trunk/docs/userguide/en/included/panelBarItem.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/panelBarItem.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -59,9 +59,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlPanelBarItem myBarItem = new
org.richfaces.component.html.HtmlPanelBarItem();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlPanelBarItem;
...
+HtmlPanelBarItem myBarItem = new HtmlPanelBarItem();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/separator.xml
===================================================================
--- trunk/docs/userguide/en/included/separator.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/separator.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -52,9 +52,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlSeparator mySeparator = new
org.richfaces.component.html.HtmlSeparator();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlSeparator;
...
+HtmlSeparator mySeparator = new HtmlSeparator();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/simpleTogglePanel.xml
===================================================================
--- trunk/docs/userguide/en/included/simpleTogglePanel.xml 2007-05-03 07:50:22 UTC (rev
621)
+++ trunk/docs/userguide/en/included/simpleTogglePanel.xml 2007-05-03 08:46:51 UTC (rev
622)
@@ -55,9 +55,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlSimpleTogglePanel myPanel = new
org.richfaces.component.html.HtmlSimpleTogglePanel();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlSimpleTogglePanel;
...
+HtmlSimpleTogglePanel myPanel = new HtmlSimpleTogglePanel();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/spacer.xml
===================================================================
--- trunk/docs/userguide/en/included/spacer.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/spacer.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -51,9 +51,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlSpacer mySpacer = new
org.richfaces.component.html.HtmlSpacer();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlSpacer;
...
+HtmlSpacer mySpacer = new HtmlSpacer();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/subTable.xml
===================================================================
--- trunk/docs/userguide/en/included/subTable.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/subTable.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -56,9 +56,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlSubTable mySubTable = new
org.richfaces.component.html.HtmlSubTable();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlSubTable;
...
+HtmlSubTable mySubTable = new HtmlSubTable();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/suggestionBox.xml
===================================================================
--- trunk/docs/userguide/en/included/suggestionBox.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/suggestionBox.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -67,9 +67,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlSuggestionBox myList = new
org.richfaces.component.html.HtmlSuggestionBox();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlSuggestionBox;
...
+HtmlSuggestionBox myList = new HtmlSuggestionBox();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/tab.xml
===================================================================
--- trunk/docs/userguide/en/included/tab.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/tab.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -56,8 +56,9 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlTab myTab = new org.richfaces.component.html.HtmlTab();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlTab;
+...
+HtmlTab myTab = new HtmlTab();
...
]]></programlisting>
</section>
Modified: trunk/docs/userguide/en/included/tabPanel.xml
===================================================================
--- trunk/docs/userguide/en/included/tabPanel.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/tabPanel.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -58,8 +58,9 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlTabPanel myTabPanel = new
org.richfaces.component.html.HtmlTabPanel();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlTabPanel;
+...
+HtmlTabPanel myTabPanel = new HtmlTabPanel();
...
]]></programlisting>
</section>
Modified: trunk/docs/userguide/en/included/toggleControl.xml
===================================================================
--- trunk/docs/userguide/en/included/toggleControl.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/toggleControl.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -56,9 +56,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlToggleControl myControl = new
org.richfaces.component.html.HtmlToggleControl();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlToggleControl;
...
+HtmlToggleControl myControl = new HtmlToggleControl();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/togglePanel.xml
===================================================================
--- trunk/docs/userguide/en/included/togglePanel.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/togglePanel.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -62,8 +62,9 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlTogglePanel myPanel = new
org.richfaces.component.html.HtmlTogglePanel();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlTogglePanel;
+...
+HtmlTogglePanel myPanel = new HtmlTogglePanel();
...
]]></programlisting>
</section>
Modified: trunk/docs/userguide/en/included/toolBar.xml
===================================================================
--- trunk/docs/userguide/en/included/toolBar.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/toolBar.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -52,9 +52,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlToolBar myToolBar = new
org.richfaces.component.html.HtmlToolBar();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlToolBar;
...
+HtmlToolBar myToolBar = new HtmlToolBar();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/toolBarGroup.xml
===================================================================
--- trunk/docs/userguide/en/included/toolBarGroup.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/toolBarGroup.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -60,9 +60,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlToolBarGroup myToolBarGroup = new
org.richfaces.component.html.HtmlToolBarGroup();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlToolBarGroup;
...
+HtmlToolBarGroup myToolBarGroup = new HtmlToolBarGroup();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/tree.xml
===================================================================
--- trunk/docs/userguide/en/included/tree.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/tree.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -54,9 +54,10 @@
</section>
<section>
<title>Creating the Component Dynamically Using Java</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlTree myPanel = new
org.richfaces.component.html.HtmlTree();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlTree;
...
+HtmlTree myPanel = new HtmlTree();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/included/treeNode.xml
===================================================================
--- trunk/docs/userguide/en/included/treeNode.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/included/treeNode.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -56,9 +56,10 @@
</section>
<section>
<title>Dynamical Creation from Java Code</title>
- <programlisting role="JAVA"><![CDATA[...
-org.richfaces.component.html.HtmlTreeNode myPanel = new
org.richfaces.component.html.HtmlTreeNode();
+ <programlisting role="JAVA"><![CDATA[import
org.richfaces.component.html.HtmlTreeNode;
...
+HtmlTreeNode myPanel = new HtmlTreeNode();
+...
]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/modules/RFCtechreqs.xml
===================================================================
--- trunk/docs/userguide/en/modules/RFCtechreqs.xml 2007-05-03 07:50:22 UTC (rev 621)
+++ trunk/docs/userguide/en/modules/RFCtechreqs.xml 2007-05-03 08:46:51 UTC (rev 622)
@@ -36,7 +36,7 @@
<keyword>JBoss 3.2 - 4.0.x</keyword>
- <keyword>Internet Explorer 5.0 - 7.0</keyword>
+ <keyword>Internet Explorer 6.0 - 7.0</keyword>
<keyword>Firefox 1.0 - 2.0</keyword>