java-hl.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version='1.0'?>
  2. <highlighters>
  3. <highlighter type='multiline-comment'>
  4. <start>/*</start>
  5. <end>*/</end>
  6. </highlighter>
  7. <highlighter type='oneline-comment'>
  8. //
  9. </highlighter>
  10. <highlighter type='string'>
  11. <string>"</string>
  12. <escape>\</escape>
  13. </highlighter>
  14. <highlighter type='string'>
  15. <string>'</string>
  16. <escape>\</escape>
  17. </highlighter>
  18. <highlighter type='keywords'>
  19. <keyword>abstract</keyword>
  20. <keyword>boolean</keyword>
  21. <keyword>break</keyword>
  22. <keyword>byte</keyword>
  23. <keyword>case</keyword>
  24. <keyword>catch</keyword>
  25. <keyword>char</keyword>
  26. <keyword>class</keyword>
  27. <keyword>const</keyword>
  28. <keyword>continue</keyword>
  29. <keyword>default</keyword>
  30. <keyword>do</keyword>
  31. <keyword>double</keyword>
  32. <keyword>else</keyword>
  33. <keyword>extends</keyword>
  34. <keyword>final</keyword>
  35. <keyword>finally</keyword>
  36. <keyword>float</keyword>
  37. <keyword>for</keyword>
  38. <keyword>goto</keyword>
  39. <keyword>if</keyword>
  40. <keyword>implements</keyword>
  41. <keyword>import</keyword>
  42. <keyword>instanceof</keyword>
  43. <keyword>int</keyword>
  44. <keyword>interface</keyword>
  45. <keyword>long</keyword>
  46. <keyword>native</keyword>
  47. <keyword>new</keyword>
  48. <keyword>package</keyword>
  49. <keyword>private</keyword>
  50. <keyword>protected</keyword>
  51. <keyword>public</keyword>
  52. <keyword>return</keyword>
  53. <keyword>short</keyword>
  54. <keyword>static</keyword>
  55. <keyword>strictfp</keyword>
  56. <keyword>super</keyword>
  57. <keyword>switch</keyword>
  58. <keyword>synchronized</keyword>
  59. <keyword>this</keyword>
  60. <keyword>throw</keyword>
  61. <keyword>throws</keyword>
  62. <keyword>transient</keyword>
  63. <keyword>try</keyword>
  64. <keyword>void</keyword>
  65. <keyword>volatile</keyword>
  66. <keyword>while</keyword>
  67. </highlighter>
  68. </highlighters>
  69. <!--
  70. Copyright (c) 2005 Michal Molhanec
  71. This software is provided 'as-is', without any express or implied
  72. warranty. In no event will the authors be held liable for any damages
  73. arising from the use of this software.
  74. Permission is granted to anyone to use this software for any purpose,
  75. including commercial applications, and to alter it and redistribute it
  76. freely, subject to the following restrictions:
  77. 1. The origin of this software must not be misrepresented; you must
  78. not claim that you wrote the original software. If you use this
  79. software in a product, an acknowledgment in the product
  80. documentation would be appreciated but is not required.
  81. 2. Altered source versions must be plainly marked as such, and must
  82. not be misrepresented as being the original software.
  83. 3. This notice may not be removed or altered from any source
  84. distribution.
  85. -->