Package org.rstudio.studio.client.shiny.events

Examples of org.rstudio.studio.client.shiny.events.ShinyAppsActionEvent


   }

   @Handler
   void onShinyAppsDeploy()
   {
      events_.fireEvent(new ShinyAppsActionEvent(
            ShinyAppsActionEvent.ACTION_TYPE_DEPLOY,
            docUpdateSentinel_.getPath()));
   }
View Full Code Here


   }

   @Handler
   void onShinyAppsTerminate()
   {
      events_.fireEvent(new ShinyAppsActionEvent(
            ShinyAppsActionEvent.ACTION_TYPE_TERMINATE,
            docUpdateSentinel_.getPath()));
   }
View Full Code Here

               // deploy its parent)
               String deployPath = appParams_.getPath();
               if (!deployPath.endsWith("/"))
                  deployPath += "/";
               deployPath += "server.R";
               events_.fireEvent(new ShinyAppsActionEvent(
                     ShinyAppsActionEvent.ACTION_TYPE_DEPLOY,
                     deployPath));
            }
         }
      });
View Full Code Here

            new ClickHandler()
      {
         @Override
         public void onClick(ClickEvent evt)
         {
            events_.fireEvent(new ShinyAppsActionEvent(
                  ShinyAppsActionEvent.ACTION_TYPE_DEPLOY,
                  targetFile_.getPath()));
         }
      });
      toolbar.addLeftWidget(deployButton_);
View Full Code Here

TOP

Related Classes of org.rstudio.studio.client.shiny.events.ShinyAppsActionEvent

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.