Example usage for com.intellij.openapi.help HelpManager invokeHelp

List of usage examples for com.intellij.openapi.help HelpManager invokeHelp

Introduction

In this page you can find the example usage for com.intellij.openapi.help HelpManager invokeHelp.

Prototype

public abstract void invokeHelp(@Nullable @NonNls String id);

Source Link

Usage

From source file:com.intellij.refactoring.extractclass.ExtractClassDialog.java

License:Apache License

protected void doHelpAction() {
    final HelpManager helpManager = HelpManager.getInstance();
    helpManager.invokeHelp(HelpID.ExtractClass);
}

From source file:com.intellij.refactoring.introduceparameterobject.IntroduceParameterObjectDialog.java

License:Apache License

protected void doHelpAction() {
    final HelpManager helpManager = HelpManager.getInstance();
    helpManager.invokeHelp(HelpID.IntroduceParameterObject);
}