blob: bbe38085287c2c073bb18e85557bad17b35ee1a9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 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.presentations;
import org.eclipse.jface.action.ActionContributionItem;
/**
* @since 3.0
*/
public class UpdatingActionContributionItem extends ActionContributionItem {
/**
* @param action
*/
public UpdatingActionContributionItem(ISelfUpdatingAction action) {
super(action);
}
/* (non-Javadoc)
* @see org.eclipse.jface.action.IContributionItem#isVisible()
*/
public boolean isVisible() {
ISelfUpdatingAction action = (ISelfUpdatingAction) getAction();
return super.isVisible() && action.shouldBeVisible();
}
/* (non-Javadoc)
* @see org.eclipse.jface.action.IContributionItem#update(java.lang.String)
*/
public void update(String propertyName) {
ISelfUpdatingAction action = (ISelfUpdatingAction) getAction();
action.update();
super.update(propertyName);
}
/* (non-Javadoc)
* @see org.eclipse.jface.action.IContributionItem#isDynamic()
*/
public boolean isDynamic() {
return true;
}
}