congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
ShowStandardErrorAction
Code IndexAdd Tabnine to your IDE (free)

How to use
ShowStandardErrorAction
in
org.eclipse.debug.internal.ui.views.console

Best Java code snippets using org.eclipse.debug.internal.ui.views.console.ShowStandardErrorAction (Showing top 3 results out of 315)

origin: wangzw/CppStyle

@Override
protected void configureToolBar(IToolBarManager mgr) {
  super.configureToolBar(mgr);
  fStdOut = new ShowStandardOutAction();
  fStdErr = new ShowStandardErrorAction();
  mgr.appendToGroup(IConsoleConstants.OUTPUT_GROUP, fStdOut);
  mgr.appendToGroup(IConsoleConstants.OUTPUT_GROUP, fStdErr);
}
origin: org.eclipse.platform/org.eclipse.debug.ui

/**
 * Constructs an action to toggle console auto activation preferences
 */
public ShowStandardErrorAction() {
  super(ConsoleMessages.ShowStandardErrorAction_0);
  setId(DebugUIPlugin.getUniqueIdentifier() + ".ShowWhenStderrChangesAction"); //$NON-NLS-1$
  PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IDebugHelpContextIds.SHOW_WHEN_STDERR_CHANGES_ACTION);
  setImageDescriptor(DebugUITools.getImageDescriptor(IInternalDebugUIConstants.IMG_ELCL_STANDARD_ERR));
}
origin: org.eclipse.platform/org.eclipse.debug.ui

@Override
public void init(IPageBookViewPage page, IConsole console) {
  fPage = page;
  fConsole = (ProcessConsole) console;
  fRemoveTerminated = new ConsoleRemoveLaunchAction(fConsole.getProcess().getLaunch());
  fRemoveAllTerminated = new ConsoleRemoveAllTerminatedAction();
  fTerminate = new ConsoleTerminateAction(page.getSite().getWorkbenchWindow(), fConsole);
  fStdOut = new ShowStandardOutAction();
  fStdErr = new ShowStandardErrorAction();
  fView = (IConsoleView) fPage.getSite().getPage().findView(IConsoleConstants.ID_CONSOLE_VIEW);
  DebugPlugin.getDefault().addDebugEventListener(this);
  DebugUITools.getDebugContextManager().getContextService(fPage.getSite().getWorkbenchWindow()).addDebugContextListener(this);
  // contribute to toolbar
  IActionBars actionBars = fPage.getSite().getActionBars();
  configureToolBar(actionBars.getToolBarManager());
  // create handler and submissions for EOF
  fEOFHandler = new EOFHandler();
}
org.eclipse.debug.internal.ui.views.consoleShowStandardErrorAction

Javadoc

Toggles preference show the console when output is written to standard error stream.

Most used methods

  • <init>
    Constructs an action to toggle console auto activation preferences
  • setId
  • setImageDescriptor

Popular in Java

  • Making http requests using okhttp
  • addToBackStack (FragmentTransaction)
  • getSharedPreferences (Context)
  • onCreateOptionsMenu (Activity)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • JCheckBox (javax.swing)
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now