blob: bb729f26109af357e9f89bf137f5a902e4a77550 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.texteditor;
import org.eclipse.swt.widgets.Composite;
/**
* @deprecated no longer supported
*/
@Deprecated
public final class PropagatingFontFieldEditor extends WorkbenchChainedTextFontFieldEditor {
/**
* Creates a new propagating font field editor with the given parameters.
*
* @param name the name
* @param labelText the label
* @param parent the parent control
* @deprecated no longer supported
*/
@Deprecated
public PropagatingFontFieldEditor(String name, String labelText, Composite parent) {
super(name, labelText, parent);
}
}