blob: dcf8ca0058f520ad32740377dea4f2b320962a30 [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.authoring.ui.filters;
import org.eclipse.epf.library.edit.itemsfilter.ICategoryFilter;
import org.eclipse.epf.uma.ContentCategory;
import org.eclipse.epf.uma.ContentElement;
import org.eclipse.epf.uma.MethodPlugin;
/**
* Filter for {@link ContentCategory}
*
* @author Shashidhar Kannoori
* @since 1.0
*/
public class CategoryFilter extends AbstractBaseFilter implements
ICategoryFilter {
/*
* (non-Javadoc)
*
* @see com.ibm.library.edit.itemsfilter.ICategoryFilter#getCategoryPackagePath()
*/
public String[] getCategoryPackagePath() {
return helper.getPathBasedOnTabString(helper.getContentCategoryTabStr());
}
/*
* (non-Javadoc)
*
* @see com.ibm.library.edit.itemsfilter.ICategoryFilter#getObject()
*/
public Object getObject() {
return helper.getContentElement();
}
/*
* (non-Javadoc)
*
* @see com.ibm.library.edit.IFilter#accept(java.lang.Object)
*/
public boolean accept(Object obj) {
// if can't be accdepted by super, return.
if (!super.accept(obj)) {
return false;
}
if (!helper.checkObjectAccepted(obj))
return false;
if (obj instanceof MethodPlugin) {
return helper.acceptMethodPlugin(obj);
}
if (childAccept(obj))
return true;
return false;
}
protected boolean childAccept(Object obj) {
if (obj instanceof ContentElement)
return true;
return false;
}
}