/******************************************************************************* * Copyright (c) 2000, 2008 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 NSCondition extends NSObject { public NSCondition() { super(); } public NSCondition(int id) { super(id); } public void broadcast() { OS.objc_msgSend(this.id, OS.sel_broadcast); } public NSString name() { int result = OS.objc_msgSend(this.id, OS.sel_name); return result != 0 ? new NSString(result) : null; } public void setName(NSString n) { OS.objc_msgSend(this.id, OS.sel_setName_1, n != null ? n.id : 0); } public void signal() { OS.objc_msgSend(this.id, OS.sel_signal); } public boolean waitUntilDate(NSDate limit) { return OS.objc_msgSend(this.id, OS.sel_waitUntilDate_1, limit != null ? limit.id : 0) != 0; } }