blob: 83d6b8cc1b3a320ff0ebaf5bb3d77d62e557037e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ui.model;
import org.eclipse.equinox.internal.p2.ui.*;
import org.eclipse.equinox.p2.engine.IProfile;
import org.eclipse.equinox.p2.query.IQueryable;
/**
* Element wrapper class for a profile that uses the query
* mechanism to obtain its contents.
*
* @since 3.4
*/
public class ProfileElement extends RemoteQueriedElement {
String profileId;
public ProfileElement(Object parent, String profileId) {
super(parent);
this.profileId = profileId;
}
// don't suppress this warning as it will cause build-time warning
// see bug 423628. This should be possible to fix once
// the entire hierarchy adopts generics
public Object getAdapter(Class adapter) {
if (adapter == IProfile.class)
return getQueryable();
return super.getAdapter(adapter);
}
protected String getImageId(Object obj) {
return ProvUIImages.IMG_PROFILE;
}
public String getLabel(Object o) {
return profileId;
}
public String getProfileId() {
return profileId;
}
protected int getDefaultQueryType() {
return QueryProvider.INSTALLED_IUS;
}
public IQueryable<?> getQueryable() {
return ProvUI.getProfileRegistry(getProvisioningUI().getSession()).getProfile(profileId);
}
/*
* Overridden to check whether we know the profile id rather
* than fetch the profile from the registry using getQueryable()
* (non-Javadoc)
* @see org.eclipse.equinox.internal.provisional.p2.ui.query.QueriedElement#knowsQueryable()
*/
public boolean knowsQueryable() {
return profileId != null;
}
/*
* Overridden to check the children so that profiles
* showing in profile views accurately reflect if they
* are empty. We do not cache the children because often
* this element is the input of a view and when the view
* is refreshed we want to refetch the children.
*
* (non-Javadoc)
* @see org.eclipse.equinox.internal.p2.ui.model.RemoteQueriedElement#isContainer()
*/
public boolean isContainer() {
return super.getChildren(this).length > 0;
}
}