blob: d11d71758832663bf8f9533e7fb6c90b200582a7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 Matthew Hall and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Matthew Hall - initial API and implementation (bug 194734)
* Matthew Hall - bug 195222, 263413
******************************************************************************/
package org.eclipse.jface.internal.databinding.swt;
import org.eclipse.jface.databinding.swt.WidgetValueProperty;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.widgets.Control;
/**
* @since 3.3
*
*/
public class ControlForegroundProperty extends
WidgetValueProperty<Control, Color> {
public Object getValueType() {
return Color.class;
}
protected Color doGetValue(Control source) {
return source.getForeground();
}
protected void doSetValue(Control source, Color value) {
source.setForeground(value);
}
public String toString() {
return "Control.foreground <Color>"; //$NON-NLS-1$
}
}