01: /*******************************************************************************
02: * Copyright (c) 2000, 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.texteditor;
11:
12: import org.eclipse.swt.widgets.Composite;
13:
14: /**
15: * @deprecated no longer supported
16: */
17: public final class PropagatingFontFieldEditor extends
18: WorkbenchChainedTextFontFieldEditor {
19:
20: /**
21: * Creates a new propagating font field editor with the given parameters.
22: *
23: * @param name the name
24: * @param labelText the label
25: * @param parent the parent control
26: * @deprecated no longer supported
27: */
28: public PropagatingFontFieldEditor(String name, String labelText,
29: Composite parent) {
30: super(name, labelText, parent);
31: }
32: }
|