Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2012-06-25 13:44:35 +0000
committerSilenio Quarti2012-06-25 13:44:35 +0000
commit44c31398c5f7d5a95cc03a487182c9e0b2abe8be (patch)
tree9c7173f8e39c72313bb82a5f8f40ae19a7d159e3 /bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt
parentf57bfc6f6b21043911a0f475af171f3f120888f2 (diff)
downloadeclipse.platform.swt-44c31398c5f7d5a95cc03a487182c9e0b2abe8be.tar.gz
eclipse.platform.swt-44c31398c5f7d5a95cc03a487182c9e0b2abe8be.tar.xz
eclipse.platform.swt-44c31398c5f7d5a95cc03a487182c9e0b2abe8be.zip
Bug 377597 - Mac OS X cursor blinking dos not honor NSTextInsertionPointBlinkPeriod (missed a file)
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSUserDefaults.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSUserDefaults.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSUserDefaults.java
new file mode 100644
index 0000000000..0eb9657c78
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSUserDefaults.java
@@ -0,0 +1,37 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2012 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 NSUserDefaults extends NSObject {
+
+public NSUserDefaults() {
+ super();
+}
+
+public NSUserDefaults(int /*long*/ id) {
+ super(id);
+}
+
+public NSUserDefaults(id id) {
+ super(id);
+}
+
+public id objectForKey(NSString defaultName) {
+ int /*long*/ result = OS.objc_msgSend(this.id, OS.sel_objectForKey_, defaultName != null ? defaultName.id : 0);
+ return result != 0 ? new id(result) : null;
+}
+
+public static NSUserDefaults standardUserDefaults() {
+ int /*long*/ result = OS.objc_msgSend(OS.class_NSUserDefaults, OS.sel_standardUserDefaults);
+ return result != 0 ? new NSUserDefaults(result) : null;
+}
+
+}

Back to the top