comparison dwtx/jface/contentassist/ISubjectControlContentAssistant.d @ 158:25f1f92fa3df

...
author Frank Benoit <benoit@tionex.de>
date Tue, 26 Aug 2008 02:46:34 +0200
parents
children d994a8b2cdf7
comparison
equal deleted inserted replaced
157:7f75eaa8103a 158:25f1f92fa3df
1 /*******************************************************************************
2 * Copyright (c) 2000, 2006 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module dwtx.jface.contentassist.ISubjectControlContentAssistant;
14
15 import dwt.dwthelper.utils;
16
17 import dwtx.jface.text.contentassist.IContentAssistant;
18
19
20 /**
21 * Extends {@link dwtx.jface.text.contentassist.IContentAssistant} to
22 * allow to install a content assistant on the given
23 * {@linkplain dwtx.jface.contentassist.IContentAssistSubjectControl content assist subject control}.
24 *
25 * @since 3.0
26 * @deprecated As of 3.2, replaced by Platform UI's field assist support
27 */
28 public interface ISubjectControlContentAssistant : IContentAssistant {
29
30 /**
31 * Installs content assist support on the given subject.
32 *
33 * @param contentAssistSubjectControl the one who requests content assist
34 */
35 void install(IContentAssistSubjectControl contentAssistSubjectControl);
36 }