blob: c1f727c363907ca619dcd2b106ed289569404498 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2015 Matthew Hall 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:
* Matthew Hall - initial API and implementation (bug 194734)
******************************************************************************/
package org.eclipse.jface.internal.databinding.swt;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Combo;
/**
* @since 3.3
*
*/
public class ComboTextProperty extends WidgetStringValueProperty<Combo> {
/**
*
*/
public ComboTextProperty() {
super(SWT.Modify);
}
@Override
protected String doGetStringValue(Combo source) {
return source.getText();
}
@Override
protected void doSetStringValue(Combo source, String value) {
source.setText(value != null ? value : ""); //$NON-NLS-1$
}
@Override
public String toString() {
return "Combo.text <String>"; //$NON-NLS-1$
}
}