blob: 02da0a256f9ae8340cd2d7e856ae55cdc2890f1f [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.TabItem;
/**
* @since 3.3
*
*/
public class TabItemTooltipTextProperty extends WidgetStringValueProperty<TabItem> {
@Override
protected String doGetStringValue(TabItem source) {
return source.getToolTipText();
}
@Override
protected void doSetStringValue(TabItem source, String value) {
source.setToolTipText(value);
}
@Override
public String toString() {
return "TabItem.toolTipText <String>"; //$NON-NLS-1$
}
}