PageRenderTime 42ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/projects/netbeans-7.3/php.help/javahelp/org/netbeans/modules/php/help/docs/csh/nav_window.html

https://gitlab.com/essere.lab.public/qualitas.class-corpus
HTML | 152 lines | 124 code | 23 blank | 5 comment | 0 complexity | 4e7a75c9feca98f1b033001d93732c92 MD5 | raw file
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <!--
  3. * Copyright © 1997, 2011, Oracle and/or its affiliates. All rights reserved.
  4. * Use is subject to license terms.
  5. *
  6. -->
  7. <html>
  8. <head>
  9. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  10. <title>Navigator Window (PHP Projects)</title>
  11. <link href="nbdocs://org.netbeans.modules.usersguide/org/netbeans/modules/usersguide/ide.css"
  12. rel="StyleSheet" type="text/css">
  13. </head>
  14. <body>
  15. <h2>Navigator Window (PHP Projects)</h2>
  16. <p><small><a href="#seealso">See Also</a></small></p>
  17. <p>The Navigator window provides a compact view of the currently selected file
  18. and simplifies navigation between different parts of the file.</p>
  19. <p>For PHP classes, you see a list of fields, methods, and constructors. PHP code outside
  20. of classes is not displayed in the Navigator.</p>
  21. <p>You can also use the Navigator to view the structure
  22. of JavaScript, HTML, CSS, and XML. </p>
  23. <p>You can open the Navigator window by choosing Window &gt; Navigator (Ctrl-7).
  24. By default, the Navigator window opens in the lower left corner of the IDE.
  25. To display a source file in the Navigator window, select the file in the Source
  26. Editor, the Projects window, the Files window, or the Favorites window.</p>
  27. <p>You can use the Navigator window to focus the Editor on a specific element in a file.
  28. To focus on an element, double-click on the element's node in the Navigator
  29. window. Your cursor automatically relocates to that element in the
  30. Editor. (You can also right-click on the node and select Go to Source
  31. from the context menu.)</p>
  32. <h3>Navigator Window Icons</h3>
  33. <p>The following icons represent elements in PHP classes. Some of these icons also represent
  34. JavaScript elements.</p>
  35. <table border="1" cellpadding="5">
  36. <tr>
  37. <th scope="col"><strong>Icon</strong></th>
  38. <th scope="col"><strong>Description</strong></th>
  39. </tr>
  40. <tr>
  41. <td style="text-align:center"><img src="../images/class.gif" alt="Java class or inner class icon"></td>
  42. <td>PHP class.</td>
  43. </tr>
  44. <tr>
  45. <td style="text-align:center"><img src="../images/constructorPrivate.gif" alt="private constructor icon"></td>
  46. <td>Private constructor.</td>
  47. </tr>
  48. <tr>
  49. <td style="text-align:center"><img src="../images/constructorPublic.gif" alt="public constructor icon"></td>
  50. <td>Public constructor.</td>
  51. </tr>
  52. <tr>
  53. <td style="text-align:center"><img src="../images/constructorProtected.gif" alt="constructor with protected access icon"></td>
  54. <td>Constructor with protected access.</td>
  55. </tr>
  56. <tr>
  57. <td style="text-align:center"><img src="../images/methodPrivate.gif" alt="private method icon"></td>
  58. <td>Private method (nonstatic).</td>
  59. </tr>
  60. <tr>
  61. <td style="text-align:center"><img src="../images/methodPublic.gif" alt="public method icon"></td>
  62. <td>Public method (nonstatic).</td>
  63. </tr>
  64. <tr>
  65. <td style="text-align:center"><img src="../images/methodProtected.gif" alt="method with protected access icon"></td>
  66. <td>Method with protected access (nonstatic).</td>
  67. </tr>
  68. <tr>
  69. <td style="text-align:center"><img src="../images/methodStPrivate.gif" alt="private method icon"></td>
  70. <td>Private method (static).</td>
  71. </tr>
  72. <tr>
  73. <td style="text-align:center"><img src="../images/methodStPublic.gif" alt="public method icon"></td>
  74. <td>Public method (static).</td>
  75. </tr>
  76. <tr>
  77. <td style="text-align:center"><img src="../images/methodStProtected.gif" alt="method with protected access icon"></td>
  78. <td>Method with protected access (static).</td>
  79. </tr>
  80. <tr>
  81. <td style="text-align:center"><img src="../images/variablePrivate.gif" alt="private field icon"></td>
  82. <td>Private field (nonstatic).</td>
  83. </tr>
  84. <tr>
  85. <td style="text-align:center"><img src="../images/variablePublic.gif" alt="public field icon"></td>
  86. <td>Public field (nonstatic).</td>
  87. </tr>
  88. <tr>
  89. <td style="text-align:center"><img src="../images/variableProtected.gif" alt="field with protected access icon"></td>
  90. <td>Field with protected access (nonstatic).</td>
  91. </tr>
  92. <tr>
  93. <td style="text-align:center"><img src="../images/variableStPrivate.gif" alt="private field icon"></td>
  94. <td>Private field (static).</td>
  95. </tr>
  96. <tr>
  97. <td style="text-align:center"><img src="../images/variableStPublic.gif" alt="public field icon"></td>
  98. <td>Public field (static).</td>
  99. </tr>
  100. <tr>
  101. <td style="text-align:center"><img src="../images/variableStProtected.gif" alt="field with protected access icon"></td>
  102. <td>Field with protected access (static).</td>
  103. </tr>
  104. </table>
  105. <h3><a name="filters"></a>Filters</h3>
  106. <p>You can select common filters for the types of members to display.
  107. Set the filters by clicking the relevant button at the bottom of the
  108. Navigator Window, or in the Navigator Window's context menu. You can select any
  109. combination of the following filters:</p>
  110. <ul>
  111. <li><strong>Show Fields</strong>. Displays the class's fields.</li>
  112. <li><strong>Show Class Members and Methods</strong>. Displays static fields
  113. and methods.</li>
  114. <li><strong>Show Non Public Members</strong>. Displays members that
  115. do not provide public access.</li>
  116. </ul>
  117. <h3>XML Files</h3>
  118. <p>For XML files, the Navigator view displays a tree of elements.</p>
  119. <p>To set the level of detail to display for an element, right-click an
  120. element node and select from the following options:</p>
  121. <ul>
  122. <li><strong>Show Attributes</strong>. Displays the attributes of each element.</li>
  123. <li><strong>Show Content</strong>. Displays the text content of each element.</li>
  124. </ul>
  125. <hr>
  126. <small><a href="../credits.html">Legal Notices</a></small>
  127. <br><br><br>
  128. </body>
  129. </html>