Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3e9306f12ed9094cdafc85356e414e059605b188 (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
/*******************************************************************************
 * Copyright (c) 2007, 2010 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.ui.model;

import org.eclipse.equinox.internal.p2.ui.ProvUIMessages;
import org.eclipse.equinox.internal.p2.ui.QueryProvider;
import org.eclipse.equinox.p2.metadata.IInstallableUnit;

/**
 * Element class that represents available updates.
 *
 * @since 3.4
 *
 */
public class Updates extends QueriedElement {

	private String profileId;
	private IInstallableUnit[] iusToBeUpdated;

	public Updates(String profileId) {
		this(profileId, null);
	}

	public Updates(String profileId, IInstallableUnit[] iusToBeUpdated) {
		super(null);
		this.profileId = profileId;
		this.iusToBeUpdated = iusToBeUpdated;
	}

	@Override
	public String getLabel(Object o) {
		return ProvUIMessages.Updates_Label;
	}

	@Override
	protected int getDefaultQueryType() {
		return QueryProvider.AVAILABLE_UPDATES;
	}

	public String getProfileId() {
		return profileId;
	}

	public IInstallableUnit[] getIUs() {
		return iusToBeUpdated;
	}

}

Back to the top