blob: 5291c560b147b7f1901fabd11ec4e6ec54960015 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001 Rational Software Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* Rational Software - initial implementation
******************************************************************************/
package org.eclipse.cdt.internal.ui.viewsupport;
import org.eclipse.jface.action.Action;
import org.eclipse.ui.help.WorkbenchHelp;
import org.eclipse.cdt.ui.actions.MemberFilterActionGroup;;
/**
* Action used to enable / disable method filter properties
*/
public class MemberFilterAction extends Action {
private int fFilterProperty;
private MemberFilterActionGroup fFilterActionGroup;
public MemberFilterAction(MemberFilterActionGroup actionGroup, String title, int property, String contextHelpId, boolean initValue) {
super(title);
fFilterActionGroup= actionGroup;
fFilterProperty= property;
WorkbenchHelp.setHelp(this, contextHelpId);
setChecked(initValue);
}
/**
* Returns this action's filter property.
*/
public int getFilterProperty() {
return fFilterProperty;
}
/*
* @see Action#actionPerformed
*/
public void run() {
fFilterActionGroup.setMemberFilter(fFilterProperty, isChecked());
}
}