blob: edfb3e0da9abf476c1575bb78602766a3f781ce7 [file] [log] [blame]
package org.eclipse.help.internal.contributions;
/*
* Licensed Materials - Property of IBM,
* WebSphere Studio Workbench
* (c) Copyright IBM Corp 2000
*/
import java.lang.*;
/**
* Action contribution
*/
public interface Action extends Contribution {
public String getView();
/**
* Returns true when this actions are meant for a stand-alone component
* installation.
*/
public boolean isStandalone();
}