blob: 634c637bd8a9f645e56cbd28eaa486b9a7e7cb76 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.cocoa;
public class NSComboBoxCell extends NSTextFieldCell {
public NSComboBoxCell() {
super();
}
public NSComboBoxCell(long id) {
super(id);
}
public NSComboBoxCell(id id) {
super(id);
}
public NSArray objectValues() {
long result = OS.objc_msgSend(this.id, OS.sel_objectValues);
return result != 0 ? new NSArray(result) : null;
}
}