KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jface > contentassist > ISubjectControlContentAssistant


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  *******************************************************************************/

11 package org.eclipse.jface.contentassist;
12
13 import org.eclipse.jface.text.contentassist.IContentAssistant;
14
15
16 /**
17  * Extends {@link org.eclipse.jface.text.contentassist.IContentAssistant} to
18  * allow to install a content assistant on the given
19  * {@linkplain org.eclipse.jface.contentassist.IContentAssistSubjectControl content assist subject control}.
20  *
21  * @since 3.0
22  * @deprecated As of 3.2, replaced by Platform UI's field assist support
23  */

24 public interface ISubjectControlContentAssistant extends IContentAssistant {
25
26     /**
27      * Installs content assist support on the given subject.
28      *
29      * @param contentAssistSubjectControl the one who requests content assist
30      */

31     void install(IContentAssistSubjectControl contentAssistSubjectControl);
32 }
33
Popular Tags