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

Examples of org.rstudio.studio.client.common.debugging.ui.ConsoleError


   {
      if (errorNodes_.containsKey(error))
      {
         Node errorNode = errorNodes_.get(error);
         clearPendingInput();
         ConsoleError errorWidget = new ConsoleError(
               traceInfo, getErrorClass(), this, command);
  
         if (expand)
            errorWidget.setTracebackVisible(true);
        
         // The widget must be added to the root panel to have its event handlers
         // wired properly, but this isn't an ideal structure; consider showing
         // console output as cell widgets in a virtualized scrolling CellTable
         // so we can easily add arbitrary controls.
         RootPanel.get().add(errorWidget);
         output_.getElement().replaceChild(errorWidget.getElement(),
                                           errorNode);
        
         scrollPanel_.onContentSizeChanged();
         errorNodes_.remove(error);
      }
View Full Code Here

TOP

Related Classes of org.rstudio.studio.client.common.debugging.ui.ConsoleError

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.