/******************************************************************************* * Copyright (c) 2008, 2011 Obeo. * 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: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.emf.eef.runtime.ui.viewers.filters; import org.eclipse.emf.eef.runtime.api.parts.IPropertiesEditionPart; import org.eclipse.jface.viewers.Viewer; import org.eclipse.jface.viewers.ViewerFilter; /** * @author <a href="mailto:goulwen.lefur@obeo.fr">Goulwen Le Fur</a> */ public class PropertiesEditionPartFilter extends ViewerFilter { private String key; /** * Default constructor. * * @param key * the key of the part to select */ public PropertiesEditionPartFilter(String key) { super(); this.key = key; } /** * {@inheritDoc} * * @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, * java.lang.Object) */ @Override public boolean select(Viewer viewer, Object parentElement, Object element) { if (parentElement instanceof String && element instanceof IPropertiesEditionPart) return parentElement.equals(key); return true; } }