KickJava   Java API By Example, From Geeks To Geeks.

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


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.core.runtime.Assert;
14
15
16 /**
17  * The standard implementation of the {@link org.eclipse.jface.contentassist.ISubjectControlContentAssistant} interface.
18  * Usually, clients instantiate this class and configure it before using it.
19  *
20  * @since 3.0
21  * @deprecated As of 3.2, replaced by Platform UI's field assist support *
22  */

23 public class SubjectControlContentAssistant extends org.eclipse.jface.text.contentassist.ContentAssistant implements ISubjectControlContentAssistant {
24
25     /*
26      * @see ISubjectControlContentAssistant#install(IContentAssistSubjectControl)
27      */

28     public void install(IContentAssistSubjectControl contentAssistSubjectControl) {
29         Assert.isNotNull(contentAssistSubjectControl);
30         super.install(contentAssistSubjectControl);
31     }
32 }
33
Popular Tags