Java Code Examples for org.openide.util.HelpCtx#DEFAULT_HELP

The following examples show how to use org.openide.util.HelpCtx#DEFAULT_HELP . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ApplWizardPanel1.java    From nb-springboot with Apache License 2.0 5 votes vote down vote up
@Override
public HelpCtx getHelp() {
    // Show no Help button for this panel:
    return HelpCtx.DEFAULT_HELP;
    // If you have context help:
    // return new HelpCtx("help.key.here");
}
 
Example 2
Source File: Edit.java    From BART with MIT License 5 votes vote down vote up
private Dialog createDialog(Object innerPane, Object[] options)   {
   DialogDescriptor dsc =  new DialogDescriptor(innerPane, 
                            null, 
                            true, 
                            options, 
                            null,
                            DialogDescriptor.DEFAULT_ALIGN, 
                            HelpCtx.DEFAULT_HELP, 
                            null);
    Dialog d = DialogDisplayer.getDefault().createDialog(dsc);
    return d;
}
 
Example 3
Source File: InitializrProjectWizardPanel1.java    From nb-springboot with Apache License 2.0 5 votes vote down vote up
@Override
public HelpCtx getHelp() {
    // Show no Help button for this panel:
    return HelpCtx.DEFAULT_HELP;
    // If you have context help:
    // return new HelpCtx("help.key.here");
}
 
Example 4
Source File: ShowAllAction.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 5
Source File: IntroPanel.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public HelpCtx getHelp () {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 6
Source File: NewFilterAction.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 7
Source File: JarDataObject.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 8
Source File: JavaRefactoringGlobalAction.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public org.openide.util.HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 9
Source File: EncapsulateFieldAction.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public org.openide.util.HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 10
Source File: DiffGraphAction.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 11
Source File: DeleteAllAction.java    From netbeans with Apache License 2.0 4 votes vote down vote up
/**
    * Not implemented
    */
   public HelpCtx getHelpCtx() {
return HelpCtx.DEFAULT_HELP;
   }
 
Example 12
Source File: RemoveAllAction.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 13
Source File: DebugAction.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 14
Source File: MotionReclassifyAction.java    From opensim-gui with Apache License 2.0 4 votes vote down vote up
public HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 15
Source File: ObjectPropertiesEditor.java    From opensim-gui with Apache License 2.0 4 votes vote down vote up
public HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 16
Source File: RenameAction.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public org.openide.util.HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 17
Source File: ExpandSuccessorsAction.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 18
Source File: RemoveFilterSettingsAction.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}
 
Example 19
Source File: ToolsOpenScriptAction.java    From opensim-gui with Apache License 2.0 4 votes vote down vote up
public HelpCtx getHelpCtx() {
     return HelpCtx.DEFAULT_HELP;
}
 
Example 20
Source File: OpenLocationAction.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public HelpCtx getHelpCtx() {
    return HelpCtx.DEFAULT_HELP;
}