Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b95b39a0f1dc031d79e21f75b844db8ba6ab6ed6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
 *  Copyright (c) 2017 Angelo ZERR.
 *
 *  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:
 *  Angelo Zerr <angelo.zerr@gmail.com> - [CodeMining] Provide CodeMining support with CodeMiningManager - Bug 527720
 */
package org.eclipse.jface.text.codemining;

import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.IAdaptable;

/**
 * A codemining provider that can provide adapters through a context that can be set by the creator
 * of this codemining provider.
 * <p>
 * Clients may subclass.
 * </p>
 *
 * @since 3.13
 */
public abstract class AbstractCodeMiningProvider implements ICodeMiningProvider {

	/**
	 * The context of this codemining provider.
	 */
	private IAdaptable context;

	/**
	 * Sets this codemining provider's context which is responsible to provide the adapters.
	 *
	 * @param context the context for this codemining provider
	 * @throws IllegalArgumentException if the context is <code>null</code>
	 * @throws IllegalStateException if this method is called more than once
	 */
	public final void setContext(IAdaptable context) throws IllegalStateException, IllegalArgumentException {
		Assert.isLegal(context != null);
		if (this.context != null)
			throw new IllegalStateException();
		this.context= context;
	}

	@Override
	public void dispose() {
		context= null;
	}

	/**
	 * Returns an object which is an instance of the given class and provides additional context for
	 * this codemining provider.
	 *
	 * @param adapterClass the adapter class to look up
	 * @return an instance that can be cast to the given class, or <code>null</code> if this object
	 *         does not have an adapter for the given class
	 */
	protected final <T> T getAdapter(Class<T> adapterClass) {
		Assert.isLegal(adapterClass != null);
		if (context != null)
			return context.getAdapter(adapterClass);
		return null;
	}
}

Back to the top