blob: bc34dffa773c32d0915913bd1c2a7eb751180010 [file] [log] [blame]
package org.eclipse.ui.internal.dialogs;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.internal.registry.IViewDescriptor;
/**
* A fake view action set.
*/
public class FakeViewActionSet extends FakeActionSetDescriptor {
/**
* Constructs a new action set.
*/
public FakeViewActionSet(IViewDescriptor desc) {
super(desc.getID(), desc);
}
/**
* Returns the action image descriptor.
*/
protected ImageDescriptor getActionImageDescriptor() {
return getView().getImageDescriptor();
}
/**
* Returns the action text.
*/
protected String getActionLabel() {
return getView().getLabel();
}
/**
* Returns the descriptor
*/
public IViewDescriptor getView() {
return (IViewDescriptor)getData();
}
}