blob: 7af476040ab75d1642c5e0956c24a89bff788968 [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.process.publishing;
import java.util.ArrayList;
import java.util.Collection;
import org.eclipse.emf.common.notify.AdapterFactory;
import org.eclipse.epf.library.edit.process.OBSActivityItemProvider;
/**
* @author Phong Nguyen Le - Mar 22, 2006
* @since 1.0
*/
public class TBSActivityItemProvider extends OBSActivityItemProvider {
/**
* @param adapterFactory
*/
public TBSActivityItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
/* (non-Javadoc)
* @see org.eclipse.epf.library.edit.process.OBSActivityItemProvider#getChildren(java.lang.Object)
*/
public Collection getChildren(Object object) {
if(isRolledUp()) {
if(cachedRollupChildren == null) {
cachedRollupChildren = new ArrayList(super.getChildren(object));
}
return cachedRollupChildren;
}
else {
if(cachedChildren == null) {
cachedChildren = new ArrayList(super.getChildren(object));
}
return cachedChildren;
}
}
}