Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a315b4f1210c2d3937e3b7f2b579e6e8b8956b9c (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
69
70
71
72
73
74
75
76
77
78
79
/*******************************************************************************
 * Copyright (c) 2009, 2010 Tasktop Technologies and others.
 *
 * 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:
 *     Tasktop Technologies - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.internal.p2.discovery;

import java.util.List;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.equinox.internal.p2.discovery.model.*;

/**
 * An abstraction of a strategy for discovering connectors and categories. Strategy design pattern. Note that strategies
 * are not reusable and must be disposed.
 * 
 * @author David Green
 * @author Steffen Pingel
 */
public abstract class AbstractDiscoveryStrategy {

	protected List<CatalogCategory> categories;

	protected List<Certification> certifications;

	protected List<CatalogItem> items;

	protected List<Tag> tags;

	public void dispose() {
		// ignore
	}

	public List<CatalogCategory> getCategories() {
		return categories;
	}

	public List<Certification> getCertifications() {
		return certifications;
	}

	public List<CatalogItem> getItems() {
		return items;
	}

	public List<Tag> getTags() {
		return tags;
	}

	/**
	 * Perform discovery and add discovered items to {@link #getCategories() categories} and {@link #getItems()}.
	 */
	public abstract void performDiscovery(IProgressMonitor monitor) throws CoreException;

	public void setCategories(List<CatalogCategory> categories) {
		this.categories = categories;
	}

	public void setCertifications(List<Certification> certifications) {
		this.certifications = certifications;
	}

	public void setItems(List<CatalogItem> connectors) {
		this.items = connectors;
	}

	public void setTags(List<Tag> itemKinds) {
		this.tags = itemKinds;
	}

}

Back to the top