blob: 5883e7f912fe46508f33bf8fdef4fb078d2ac52e [file] [log] [blame]
package org.eclipse.ui.help;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.swt.events.HelpEvent;
/**
* A content computer is used to dynamically calculate help support contexts at the
* time the user requests help.
* <p>
* This interface may be implemented by clients.
* </p>
* @deprecated nested contexts are no longer supported by the help support system
*
*/
public interface IContextComputer {
/**
* Computes contexts for the help system.
*
* @param event the help event which triggered this request for help
* @return a mixed-type array of context ids (type <code>String</code>)
* and/or help contexts (type <code>IContext</code>)
* @see org.eclipse.help.IContext
*/
public Object[] computeContexts(HelpEvent event);
/**
* Returns the local contexts for this context computer
* <p>
* Typically this method is called by other instances of
* <code>IContextComputer</code> in their <code>computeContexts</code>
* method.
* </p>
* <p>
* The important concept here is that the value returned by
* <code>computeContexts</code> represents the complete help
* contexts and is passed directly to the help support system.
* </p>
* <p>
* However the value returned by this method represents the
* only the contexts for the particular control with which this
* <code>IContextComputer</code> is associated.
* </p>
* @param event the help event which triggered this request for help
* @return a mixed-type array of context ids (type <code>String</code>)
* and/or help contexts (type <code>IContext</code>)
* @see org.eclipse.help.IContext
*/
public Object[] getLocalContexts(HelpEvent event);
}