blob: 39a505966f4c7e9a55bceba031600481485e3291 [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)
* Matthew Hall - bug 262946
******************************************************************************/
package org.eclipse.jface.internal.databinding.swt;
import org.eclipse.swt.widgets.ToolItem;
/**
* @since 3.3
*
*/
public class ToolItemTooltipTextProperty extends WidgetStringValueProperty<ToolItem> {
@Override
protected String doGetStringValue(ToolItem source) {
return source.getToolTipText();
}
@Override
protected void doSetStringValue(ToolItem source, String value) {
source.setToolTipText(value);
}
@Override
public String toString() {
return "ToolItem.toolTipText <String>"; //$NON-NLS-1$
}
}