blob: 0b6462be81915fb531ce6cfac57134df0807821f [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 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 implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.library.edit.itemsfilter;
import java.util.Collection;
import org.eclipse.emf.common.notify.AdapterFactory;
import org.eclipse.epf.library.edit.IFilter;
import org.eclipse.epf.library.edit.util.ProcessUtil;
import org.eclipse.epf.uma.Descriptor;
/**
* The item provider adapter for activities in the Work Breakdown Structure
* page of a Process editor.
*
* @author Shashidhar Kannoori
* @since 1.0
*/
public class PBSActivityItemProvider extends BSActivityItemProvider {
private IFilter filter;
// IFilter fitler;
public PBSActivityItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
public Collection getChildren(Object object) {
super.setFilter(filter);
Collection col = super.getChildren(object);
// This call to PBSActiivityItemProvider(process package) is done
// - in order remove duplicate subartifact.
col = ProcessUtil.removeSubartifactsFromChildren(col, false);
return col;
}
public void setFilter(IFilter filter) {
this.filter = filter;
}
protected Object getObject(Descriptor descriptor) {
return null;
}
public Collection getEClasses() {
return ProcessUtil.getPBSEclasses();
}
}