home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2006 April / DPPRO0406DVD.ISO / Essentials / Programming / Eclipse SDK / eclipse-SDK-3.1.1-win32.exe / eclipse / plugins / org.eclipse.jdt.doc.user_3.1.1 / plugin.xml < prev    next >
Encoding:
Extensible Markup Language  |  2005-09-29  |  2.1 KB  |  57 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?eclipse version="3.0"?>
  3.  
  4. <!-- ===================================================== -->
  5. <!-- Declare the documentation for the JDT User Guide  -->
  6. <!-- We will declare only one infoset (book)               -->
  7. <!-- ===================================================== -->
  8.  
  9. <plugin>
  10.  
  11.  
  12. <!-- ============================================================================= -->
  13. <!-- Define primary TOC                                                            -->
  14. <!-- ============================================================================= -->
  15.  
  16.    <extension point="org.eclipse.help.toc"> 
  17.        <toc file="toc.xml" primary="true" />
  18.        <index path="index"/>
  19.    </extension>
  20.  
  21.  
  22. <!-- ============================================================================= -->
  23. <!-- Define TOCs                                                                   -->
  24. <!-- ============================================================================= -->
  25.  
  26.    <extension point="org.eclipse.help.toc">
  27.        <toc file="topics_GettingStarted.xml" />
  28.        <toc file="topics_TipsTricks.xml" />
  29.        <toc file="topics_Concepts.xml" />
  30.        <toc file="topics_Tasks.xml" />
  31.        <toc file="topics_Reference.xml" />
  32.    </extension>
  33.  
  34.  
  35. <!-- ============================================================================= -->
  36. <!-- F1 context files                                                              -->
  37. <!-- ============================================================================= -->
  38.  
  39.     <extension point="org.eclipse.help.contexts"> 
  40.         <contexts file="contexts_JDT.xml" plugin="org.eclipse.jdt.ui"/> 
  41.     </extension>
  42.  
  43.     <extension point="org.eclipse.help.contexts">
  44.         <contexts file="contexts_Debugger.xml" plugin="org.eclipse.debug.ui"/> 
  45.         <contexts file="contexts_Debugger.xml" plugin="org.eclipse.ui.console"/> 
  46.     </extension>
  47.     
  48.     <extension point="org.eclipse.help.contexts">
  49.         <contexts file="contexts_JDT_Debugger.xml" plugin="org.eclipse.jdt.debug.ui"/> 
  50.     </extension>
  51.  
  52.     <extension point="org.eclipse.help.contexts">
  53.         <contexts file="contexts_JDT_JUnit.xml" plugin="org.eclipse.jdt.junit"/> 
  54.     </extension>
  55.  
  56. </plugin>
  57.