blob: 24ce52f1fc740f209dd37d4542d009d7b48d7049 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 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 306203)
******************************************************************************/
package org.eclipse.jface.internal.databinding.swt;
import org.eclipse.swt.custom.StyledText;
/**
* @since 3.3
*
*/
public class StyledTextEditableProperty extends WidgetBooleanValueProperty<StyledText> {
@Override
protected boolean doGetBooleanValue(StyledText source) {
return source.getEditable();
}
@Override
protected void doSetBooleanValue(StyledText source, boolean value) {
source.setEditable(value);
}
@Override
public String toString() {
return "StyledText.editable <boolean>"; //$NON-NLS-1$
}
}