Package org.eclipse.ui.internal.dialogs

Source Code of org.eclipse.ui.internal.dialogs.WorkingSetFilter

/*******************************************************************************
* Copyright (c) 2005 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 API and implementation
******************************************************************************/

package org.eclipse.ui.internal.dialogs;

import java.util.Set;

import org.eclipse.jface.viewers.Viewer;
import org.eclipse.jface.viewers.ViewerFilter;
import org.eclipse.ui.IWorkingSet;

public class WorkingSetFilter extends ViewerFilter {
    Set workingSetIds;
   
    public WorkingSetFilter(Set workingSetIds) {
      this.workingSetIds = workingSetIds;
    }
   
    public boolean select(Viewer viewer, Object parentElement, Object element) {
        if (element instanceof IWorkingSet) {
            IWorkingSet workingSet = (IWorkingSet) element;
      String id = workingSet.getId();
            //if (!workingSet.isVisible())
            //  return false;
            if (workingSetIds != null && id != null) {
                return workingSetIds.contains(id);
            }
        }
        return true;
    }
}
TOP

Related Classes of org.eclipse.ui.internal.dialogs.WorkingSetFilter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.