/**
  * Creates a new <code>FindOccurrencesInFileAction</code>. The action requires that the selection
  * provided by the page's selection provider is of type <code>
  * org.eclipse.jface.viewers.IStructuredSelection</code>.
  *
  * @param page the page providing context information for this action
  */
 public FindOccurrencesInFileAction(Page page) {
   this(page.getSite());
 }
 /**
  * Creates a new <code>DartSearchActionGroup</code>. The group requires that the selection
  * provided by the page's selection provider is of type <code>
  * org.eclipse.jface.viewers.IStructuredSelection</code>.
  *
  * @param page the page that owns this action group
  */
 public DartSearchActionGroup_OLD(Page page) {
   this(page.getSite());
 }
 /**
  * Creates a new <code>GenerateActionGroup</code>. The group requires that the selection provided
  * by the page's selection provider is of type <code>
  * org.eclipse.jface.viewers.IStructuredSelection</code>.
  *
  * @param page the page that owns this action group
  */
 public GenerateIncludePathActionGroup(Page page) {
   this(page.getSite());
 }
 /**
  * Creates a new <code>OpenActionGroup</code>. The group requires that the selection provided by
  * the given selection provider is of type {@link IStructuredSelection}.
  *
  * @param page the page that owns this action group
  * @param selectionProvider the selection provider used instead of the page selection provider.
  * @since 3.2
  */
 public OpenViewActionGroup(Page page, ISelectionProvider selectionProvider) {
   createSiteActions(page.getSite(), selectionProvider);
 }
 /**
  * Creates a new <code>OpenActionGroup</code>. The group requires that the selection provided by
  * the page's selection provider is of type {@link IStructuredSelection}.
  *
  * @param page the page that owns this action group
  */
 public OpenViewActionGroup(Page page) {
   createSiteActions(page.getSite(), null);
 }
 /**
  * Creates a new <code>GenerateActionGroup</code>. The group requires that the selection provided
  * by the page's selection provider is of type <code>
  * org.eclipse.jface.viewers.IStructuredSelection</code>.
  *
  * @param page the page that owns this action group
  */
 public GenerateActionGroup(Page page) {
   this(page.getSite());
 }
 /**
  * Creates a new <code>GenerateActionGroup</code>. The group requires that the selection provided
  * by the page's selection provider is of type <code>
  * org.eclipse.jface.viewers.IStructuredSelection</code>.
  *
  * @param page the page that owns this action group
  */
 public GenerateBuildPathActionGroup(Page page) {
   this(page.getSite());
 }