Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSStatusBar.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSStatusBar.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSStatusBar.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSStatusBar.java
deleted file mode 100644
index c457ccf275..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSStatusBar.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2009 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swt.internal.cocoa;
-
-public class NSStatusBar extends NSObject {
-
-public NSStatusBar() {
- super();
-}
-
-public NSStatusBar(int /*long*/ id) {
- super(id);
-}
-
-public NSStatusBar(id id) {
- super(id);
-}
-
-public void removeStatusItem(NSStatusItem item) {
- OS.objc_msgSend(this.id, OS.sel_removeStatusItem_, item != null ? item.id : 0);
-}
-
-public NSStatusItem statusItemWithLength(float /*double*/ length) {
- int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_statusItemWithLength_, length);
- return result != 0 ? new NSStatusItem(result) : null;
-}
-
-public static NSStatusBar systemStatusBar() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSStatusBar, OS.sel_systemStatusBar);
- return result != 0 ? new NSStatusBar(result) : null;
-}
-
-}

Back to the top