Package org.rstudio.studio.client.workbench.views.vcs.common.events.DiffChunkActionEvent

Examples of org.rstudio.studio.client.workbench.views.vcs.common.events.DiffChunkActionEvent.Action


            if (el != null)
            {
               event.preventDefault();
               event.stopPropagation();

               Action action = Action.valueOf(el.getAttribute("data-action"));

               if (value.getChunk() != null)
                  fireEvent(new DiffChunkActionEvent(action, value.getChunk()));
               else
                  fireEvent(new DiffLinesActionEvent(action));
View Full Code Here

TOP

Related Classes of org.rstudio.studio.client.workbench.views.vcs.common.events.DiffChunkActionEvent.Action

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.