Examples of ReferencesSearchGroup


Examples of mmrnmhrm.org.eclipse.dltk.ui.actions.ReferencesSearchGroup

   
    // This will deactivate the keybindings for these actions
    setAction("OpenTypeHierarchy", null);
    setAction("OpenCallHierarchy", null);
   
    fReferencesGroup = new ReferencesSearchGroup(this, this.getLanguageToolkit());
  }
View Full Code Here

Examples of org.erlide.ui.internal.search.ReferencesSearchGroup

     */
    public ErlangSearchActionGroup(final AbstractErlangEditor editor) {
        assertThat(editor, is(not(nullValue())));
        fEditor = editor;

        fReferencesGroup = new ReferencesSearchGroup(fEditor);
        // fReadAccessGroup = new ReadReferencesSearchGroup(fEditor);
        // fWriteAccessGroup = new WriteReferencesSearchGroup(fEditor);
        // fDeclarationsGroup = new DeclarationsSearchGroup(fEditor);
        fImplementorsGroup = new ImplementorsSearchGroup(fEditor);
        // fOccurrencesGroup = new OccurrencesSearchGroup(fEditor);
View Full Code Here

Examples of org.erlide.ui.internal.search.ReferencesSearchGroup

        fImplementorsGroup = new ImplementorsSearchGroup(fEditor);
        // fOccurrencesGroup = new OccurrencesSearchGroup(fEditor);
    }

    public ErlangSearchActionGroup(final IWorkbenchSite site) {
        fReferencesGroup = new ReferencesSearchGroup(site);
        // fReadAccessGroup = new ReadReferencesSearchGroup(site);
        // fWriteAccessGroup = new WriteReferencesSearchGroup(site);
        // fDeclarationsGroup = new DeclarationsSearchGroup(site);
        fImplementorsGroup = new ImplementorsSearchGroup(site);
        // fOccurrencesGroup = new OccurrencesSearchGroup(site);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.