Package org.rstudio.studio.client.rmarkdown.events

Examples of org.rstudio.studio.client.rmarkdown.events.RenderRmdEvent


   }
  
   private void renderNotebookv2(final DocUpdateSentinel sourceDoc,
                                 String format)
   {
      eventBus_.fireEvent(new RenderRmdEvent(sourceDoc.getPath(),
                                             1,
                                             format,
                                             sourceDoc.getEncoding(),
                                             false,
                                             false));
View Full Code Here


                           isShinyDoc,
                           new CommandWithArg<RMarkdownContext>() {
         @Override
         public void execute(RMarkdownContext arg)
         {
            eventBus_.fireEvent(new RenderRmdEvent(sourceFile,
                                                   sourceLine,
                                                   format,
                                                   encoding,
                                                   asTempfile,
                                                   asShiny));
View Full Code Here

      }
   }
  
   private void rerenderAsShiny(RmdRenderResult result)
   {
      events_.fireEvent(new RenderRmdEvent(
            result.getTargetFile(), result.getTargetLine(),
            null, result.getTargetEncoding(), false, true));
   }
View Full Code Here

TOP

Related Classes of org.rstudio.studio.client.rmarkdown.events.RenderRmdEvent

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.