Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 44c23dede4137ff6bbbdfb11cd1f26400b65d15d (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
/*******************************************************************************
 * Copyright (c) 2008, 2017 IBM Corporation 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: IBM Corporation - initial API and implementation
 ******************************************************************************/
package org.eclipse.equinox.internal.p2.metadata;

import java.net.URI;
import java.util.Collection;
import org.eclipse.equinox.p2.metadata.IInstallableUnit;
import org.eclipse.equinox.p2.metadata.IUpdateDescriptor;
import org.eclipse.equinox.p2.metadata.expression.IMatchExpression;

public class UpdateDescriptor implements IUpdateDescriptor {
	private Collection<IMatchExpression<IInstallableUnit>> descriptors;

	private String description;
	private int severity;
	private URI location;

	public UpdateDescriptor(Collection<IMatchExpression<IInstallableUnit>> descriptors, int severity, String description, URI location) {
		this.descriptors = descriptors;
		this.severity = severity;
		this.description = description;
		this.location = location;
	}

	@Override
	public String getDescription() {
		return description;
	}

	@Override
	public int getSeverity() {
		return severity;
	}

	@Override
	public boolean isUpdateOf(IInstallableUnit iu) {
		return descriptors.iterator().next().isMatch(iu);
	}

	@Override
	public Collection<IMatchExpression<IInstallableUnit>> getIUsBeingUpdated() {
		return descriptors;
	}

	@Override
	public URI getLocation() {
		return location;
	}
}

Back to the top