blob: 0ea22a629ca8f886062c7fd7f511ddc7d81a32fd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.ui.details.providers;
import org.eclipse.bpel.model.messageproperties.Property;
import org.eclipse.bpel.model.messageproperties.PropertyAlias;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.jface.viewers.ViewerFilter;
/**
* Filter which selects from a set of PropertyAliases exactly those which are associated with a
* given Property.
*/
public class PropertyAliasFilter extends ViewerFilter {
Property property;
public PropertyAliasFilter() {
property = null;
}
public void setProperty(Property property) {
this.property = property;
}
@Override
public boolean select(Viewer viewer, Object parentElement, Object element) {
if ((property != null) && (element instanceof PropertyAlias)) {
if (((PropertyAlias)element).getPropertyName() == property) return true;
}
return false;
}
}