summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeEditor.java
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2006-04-17 23:04:22 +0000
committerCarolyn MacLeod <carolyn>2006-04-17 23:04:22 +0000
commit71cb57a1f615096ab976b0ce4983b41018a4115b (patch)
tree923eb27f707d22c5133c829c652bce45c434defc /bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeEditor.java
parentccb90edffcc42c11361511dc0ff9fdd8eab06003 (diff)
downloadeclipse.platform.swt-71cb57a1f615096ab976b0ce4983b41018a4115b.tar.gz
eclipse.platform.swt-71cb57a1f615096ab976b0ce4983b41018a4115b.tar.xz
eclipse.platform.swt-71cb57a1f615096ab976b0ce4983b41018a4115b.zip
bug 136890 - javadoc typos
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeEditor.java')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeEditor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeEditor.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeEditor.java
index 22ca6cabaf..88c0ac073b 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeEditor.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeEditor.java
@@ -29,11 +29,11 @@ import org.eclipse.swt.events.*;
* final Table table = tableTree.getTable();
* TableColumn column1 = new TableColumn(table, SWT.NONE);
* TableColumn column2 = new TableColumn(table, SWT.NONE);
-* for (int i = 0; i &lt 10; i++) {
+* for (int i = 0; i &lt; 10; i++) {
* TableTreeItem item = new TableTreeItem(tableTree, SWT.NONE);
* item.setText(0, "item " + i);
* item.setText(1, "edit this value");
-* for (int j = 0; j &lt 3; j++) {
+* for (int j = 0; j &lt; 3; j++) {
* TableTreeItem subitem = new TableTreeItem(item, SWT.NONE);
* subitem.setText(0, "subitem " + i + " " + j);
* subitem.setText(1, "edit this value");