blob: 9f6186afcded74451fffc5d239300d2d3296c472 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 Jens Lidestrom 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
*
******************************************************************************/
package org.eclipse.jface.internal.databinding.swt;
import org.eclipse.swt.widgets.ToolBar;
/**
* @since 1.10.0
*/
public class ToolBarVisibleProperty extends VisibleProperty<ToolBar> {
@Override
protected boolean doGetVisibleValue(ToolBar source) {
return source.getVisible();
}
@Override
protected void doSetBooleanValue(ToolBar source, boolean value) {
source.setVisible(value);
}
@Override
public String toString() {
return "ToolBar.visible <boolean>"; //$NON-NLS-1$
}
}