diff options
author | Veronika Irvine | 2005-01-26 16:40:52 +0000 |
---|---|---|
committer | Veronika Irvine | 2005-01-26 16:40:52 +0000 |
commit | b41f60e899b20029f1cfe5a40036031007ced518 (patch) | |
tree | 8c7e19c9935d8a93eb1f45c4e886e55a93f4c810 | |
parent | fd4ff9c44d98ded417d9b638388c950bd93e865c (diff) | |
download | eclipse.platform.swt-b41f60e899b20029f1cfe5a40036031007ced518.tar.gz eclipse.platform.swt-b41f60e899b20029f1cfe5a40036031007ced518.tar.xz eclipse.platform.swt-b41f60e899b20029f1cfe5a40036031007ced518.zip |
*** empty log message ***
2 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java index 0a066a4e24..4dabb1c536 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java @@ -37,7 +37,7 @@ import org.eclipse.swt.widgets.*; * Note: Only one of the styles SINGLE, and MULTI may be specified. * </p> * - * @deprecated @deprecated As of 3.1 use Tree, TreeItem and TreeColumn + * @deprecated As of 3.1 use Tree, TreeItem and TreeColumn */ public class TableTree extends Composite { Table table; diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeItem.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeItem.java index ae41b797be..1c3aa0587a 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeItem.java @@ -19,6 +19,8 @@ import org.eclipse.swt.widgets.*; * A TableTreeItem is a selectable user interface object * that represents an item in a heirarchy of items in a * TableTree. + * + * @deprecated As of 3.1 use Tree, TreeItem and TreeColumn */ public class TableTreeItem extends Item { TableItem tableItem; @@ -61,8 +63,6 @@ public class TableTreeItem extends Item { * * @see SWT * @see Widget#getStyle() - * - * @deprecated @deprecated As of 3.1 use Tree, TreeItem and TreeColumn */ public TableTreeItem(TableTree parent, int style) { this (parent, style, parent.getItemCount()); |