Package org.rstudio.studio.client.workbench.views.source.events

Examples of org.rstudio.studio.client.workbench.views.source.events.CodeBrowserNavigationEvent


               docDisplay_.navigateToPosition(position, true);
            }
            else if (def.getNamespace() != null)
            {
               docDisplay_.recordCurrentNavigationPosition();
               eventBus_.fireEvent(new CodeBrowserNavigationEvent(
                     def));       
            }
         }
      }
View Full Code Here


               {
                  functionName = functionName.substring(0, idx);
               }
               // if this is a different source file than we already have open,
               // open it
               eventBus_.fireEvent(new CodeBrowserNavigationEvent(
                     SearchPathFunctionDefinition.create(
                           functionName,
                           "debugging",
                           currentBrowseSource_,
                           true),
View Full Code Here

                  
                   // if we didn't get a file back see if we got a
                   // search path definition
                   else if (def.getSearchPathFunctionDefinition() != null)
                   {
                      eventBus_.fireEvent(new CodeBrowserNavigationEvent(
                                     def.getSearchPathFunctionDefinition()));
                     
                   }
               }
            }
View Full Code Here

TOP

Related Classes of org.rstudio.studio.client.workbench.views.source.events.CodeBrowserNavigationEvent

Copyright © 2018 www.massapicom. 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.