blob: e590829f6def02cd4c68db9dccc9adb867989041 [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.widgets.Text;
/**
* @since 3.3
*
*/
public class TextEditableProperty extends WidgetBooleanValueProperty<Text> {
@Override
protected boolean doGetBooleanValue(Text source) {
return source.getEditable();
}
@Override
protected void doSetBooleanValue(Text source, boolean value) {
source.setEditable(value);
}
@Override
public String toString() {
return "Text.editable <boolean>"; //$NON-NLS-1$
}
}