summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2002-06-10 17:09:27 +0000
committerCarolyn MacLeod <carolyn>2002-06-10 17:09:27 +0000
commit41e5553737cf255a2e9bfc642a86459b9d3f0575 (patch)
treee11f4d36abc9f05400d3c502707a9f7222bbf518 /bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java
parent56bc6e670a7608314ce91b87f11ca2841141eacb (diff)
downloadeclipse.platform.swt-41e5553737cf255a2e9bfc642a86459b9d3f0575.tar.gz
eclipse.platform.swt-41e5553737cf255a2e9bfc642a86459b9d3f0575.tar.xz
eclipse.platform.swt-41e5553737cf255a2e9bfc642a86459b9d3f0575.zip
Removed extra blank lines added by JavadocBasher.
Updated copyright to include 2002.
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java19
1 files changed, 9 insertions, 10 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java
index c054d406e3..c0b957dc27 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java
@@ -1,7 +1,7 @@
package org.eclipse.swt.widgets;
/*
- * (c) Copyright IBM Corp. 2000, 2001.
+ * (c) Copyright IBM Corp. 2000, 2001, 2002.
* All Rights Reserved
*/
@@ -22,8 +22,7 @@ import org.eclipse.swt.graphics.*;
* <p>
* IMPORTANT: This class is <em>not</em> intended to be subclassed.
* </p>
- */
-
+ */
public class TabItem extends Item {
int labelHandle, pixmapHandle, pageHandle;
Control control;
@@ -59,7 +58,7 @@ public class TabItem extends Item {
* @see SWT
* @see Widget#checkSubclass
* @see Widget#getStyle
- */
+ */
public TabItem (TabFolder parent, int style) {
super (parent, style);
this.parent = parent;
@@ -96,7 +95,7 @@ public TabItem (TabFolder parent, int style) {
* @see SWT
* @see Widget#checkSubclass
* @see Widget#getStyle
- */
+ */
public TabItem (TabFolder parent, int style, int index) {
super (parent, style);
this.parent = parent;
@@ -114,7 +113,7 @@ public TabItem (TabFolder parent, int style, int index) {
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
- */
+ */
public Control getControl () {
checkWidget ();
return control;
@@ -135,7 +134,7 @@ public Display getDisplay () {
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
- */
+ */
public TabFolder getParent () {
checkWidget ();
return parent;
@@ -151,7 +150,7 @@ public TabFolder getParent () {
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
- */
+ */
public String getToolTipText () {
checkWidget ();
return toolTipText;
@@ -190,7 +189,7 @@ void releaseWidget () {
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
- */
+ */
public void setControl (Control control) {
checkWidget ();
Control oldControl = this.control, newControl = control;
@@ -258,7 +257,7 @@ public void setText (String string) {
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
- */
+ */
public void setToolTipText (String string) {
checkWidget ();
toolTipText = string;