Package org.rstudio.studio.client.common.debugging.events

Examples of org.rstudio.studio.client.common.debugging.events.UnhandledErrorEvent


            eventBus_.fireEvent(new PresentationPaneRequestCompletedEvent());
         }
         else if (type.equals(ClientEvent.UnhandledError))
         {
            UnhandledError err = event.getData();
            eventBus_.fireEvent(new UnhandledErrorEvent(err));
         }
         else if (type.equals(ClientEvent.ErrorHandlerChanged))
         {
            ErrorHandlerType handlerType = event.getData();
            eventBus_.fireEvent(new ErrorHandlerChangedEvent(handlerType));
View Full Code Here

TOP

Related Classes of org.rstudio.studio.client.common.debugging.events.UnhandledErrorEvent

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.