blob: 59cf1f671a5edb74ae6679f69644b648f6450d1d [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 213893)
******************************************************************************/
package org.eclipse.jface.internal.databinding.swt;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Button;
/**
* @since 3.3
*
*/
public class ButtonImageProperty extends WidgetImageValueProperty<Button> {
@Override
protected Image doGetImageValue(Button source) {
return source.getImage();
}
@Override
protected void doSetImageValue(Button source, Image value) {
source.setImage(value);
}
@Override
public String toString() {
return "Button.image <Image>"; //$NON-NLS-1$
}
}