KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

java.php 49KB

11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983
  1. <?php
  2. /*************************************************************************************
  3. * java.php
  4. * --------
  5. * Author: Nigel McNie (nigel@geshi.org)
  6. * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/)
  7. * Release Version: 1.0.8.11
  8. * Date Started: 2004/07/10
  9. *
  10. * Java language file for GeSHi.
  11. *
  12. * CHANGES
  13. * -------
  14. * 2008/05/25 (1.0.7.22)
  15. * - Added highlighting of import and package directives as non-OOP
  16. * 2005/12/28 (1.0.4)
  17. * - Added instanceof keyword
  18. * 2004/11/27 (1.0.3)
  19. * - Added support for multiple object splitters
  20. * 2004/08/05 (1.0.2)
  21. * - Added URL support
  22. * - Added keyword "this", as bugs in GeSHi class ironed out
  23. * 2004/08/05 (1.0.1)
  24. * - Added support for symbols
  25. * - Added extra missed keywords
  26. * 2004/07/14 (1.0.0)
  27. * - First Release
  28. *
  29. * TODO (updated 2004/11/27)
  30. * -------------------------
  31. * * Compact the class names like the first few have been
  32. * and eliminate repeats
  33. *
  34. *************************************************************************************
  35. *
  36. * This file is part of GeSHi.
  37. *
  38. * GeSHi is free software; you can redistribute it and/or modify
  39. * it under the terms of the GNU General Public License as published by
  40. * the Free Software Foundation; either version 2 of the License, or
  41. * (at your option) any later version.
  42. *
  43. * GeSHi is distributed in the hope that it will be useful,
  44. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  45. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  46. * GNU General Public License for more details.
  47. *
  48. * You should have received a copy of the GNU General Public License
  49. * along with GeSHi; if not, write to the Free Software
  50. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  51. *
  52. ************************************************************************************/
  53. $language_data = array (
  54. 'LANG_NAME' => 'Java',
  55. 'COMMENT_SINGLE' => array(1 => '//'),
  56. 'COMMENT_MULTI' => array('/*' => '*/'),
  57. 'COMMENT_REGEXP' => array(
  58. //Import and Package directives (Basic Support only)
  59. 2 => '/(?:(?<=import[\\n\\s])|(?<=package[\\n\\s]))[\\n\\s]*([a-zA-Z0-9_]+\\.)*([a-zA-Z0-9_]+|\*)(?=[\n\s;])/i',
  60. // javadoc comments
  61. 3 => '#/\*\*(?![\*\/]).*\*/#sU'
  62. ),
  63. 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
  64. 'QUOTEMARKS' => array("'", '"'),
  65. 'ESCAPE_CHAR' => '\\',
  66. 'KEYWORDS' => array(
  67. 1 => array(
  68. 'for', 'foreach', 'if', 'else', 'while', 'do',
  69. 'switch', 'case', 'return', 'public',
  70. 'private', 'protected', 'extends', 'break', 'class',
  71. 'new', 'try', 'catch', 'throws', 'finally', 'implements',
  72. 'interface', 'throw', 'final', 'native', 'synchronized', 'this',
  73. 'abstract', 'transient', 'instanceof', 'assert', 'continue',
  74. 'default', 'enum', 'package', 'static', 'strictfp', 'super',
  75. 'volatile', 'const', 'goto', 'import'
  76. ),
  77. 2 => array(
  78. 'null', 'false', 'true'
  79. ),
  80. 3 => array(
  81. 'AbstractAction', 'AbstractBorder', 'AbstractButton',
  82. 'AbstractCellEditor', 'AbstractCollection',
  83. 'AbstractColorChooserPanel', 'AbstractDocument',
  84. 'AbstractDocument.AttributeContext',
  85. 'AbstractDocument.Content',
  86. 'AbstractDocument.ElementEdit',
  87. 'AbstractLayoutCache',
  88. 'AbstractLayoutCache.NodeDimensions', 'AbstractList',
  89. 'AbstractListModel', 'AbstractMap',
  90. 'AbstractMethodError', 'AbstractSequentialList',
  91. 'AbstractSet', 'AbstractTableModel',
  92. 'AbstractUndoableEdit', 'AbstractWriter',
  93. 'AccessControlContext', 'AccessControlException',
  94. 'AccessController', 'AccessException', 'Accessible',
  95. 'AccessibleAction', 'AccessibleBundle',
  96. 'AccessibleComponent', 'AccessibleContext',
  97. 'AccessibleHyperlink', 'AccessibleHypertext',
  98. 'AccessibleIcon', 'AccessibleObject',
  99. 'AccessibleRelation', 'AccessibleRelationSet',
  100. 'AccessibleResourceBundle', 'AccessibleRole',
  101. 'AccessibleSelection', 'AccessibleState',
  102. 'AccessibleStateSet', 'AccessibleTable',
  103. 'AccessibleTableModelChange', 'AccessibleText',
  104. 'AccessibleValue', 'Acl', 'AclEntry',
  105. 'AclNotFoundException', 'Action', 'ActionEvent',
  106. 'ActionListener', 'ActionMap', 'ActionMapUIResource',
  107. 'Activatable', 'ActivateFailedException',
  108. 'ActivationDesc', 'ActivationException',
  109. 'ActivationGroup', 'ActivationGroupDesc',
  110. 'ActivationGroupDesc.CommandEnvironment',
  111. 'ActivationGroupID', 'ActivationID',
  112. 'ActivationInstantiator', 'ActivationMonitor',
  113. 'ActivationSystem', 'Activator', 'ActiveEvent',
  114. 'Adjustable', 'AdjustmentEvent',
  115. 'AdjustmentListener', 'Adler32', 'AffineTransform',
  116. 'AffineTransformOp', 'AlgorithmParameterGenerator',
  117. 'AlgorithmParameterGeneratorSpi',
  118. 'AlgorithmParameters', 'AlgorithmParameterSpec',
  119. 'AlgorithmParametersSpi', 'AllPermission',
  120. 'AlphaComposite', 'AlreadyBound',
  121. 'AlreadyBoundException', 'AlreadyBoundHelper',
  122. 'AlreadyBoundHolder', 'AncestorEvent',
  123. 'AncestorListener', 'Annotation', 'Any', 'AnyHolder',
  124. 'AnySeqHelper', 'AnySeqHolder', 'Applet',
  125. 'AppletContext', 'AppletInitializer', 'AppletStub',
  126. 'ApplicationException', 'Arc2D', 'Arc2D.Double',
  127. 'Arc2D.Float', 'Area', 'AreaAveragingScaleFilter',
  128. 'ARG_IN', 'ARG_INOUT', 'ARG_OUT',
  129. 'ArithmeticException', 'Array',
  130. 'ArrayIndexOutOfBoundsException', 'ArrayList',
  131. 'Arrays', 'ArrayStoreException', 'AsyncBoxView',
  132. 'Attribute', 'AttributedCharacterIterator',
  133. 'AttributedCharacterIterator.Attribute',
  134. 'AttributedString', 'AttributeInUseException',
  135. 'AttributeList', 'AttributeModificationException',
  136. 'Attributes', 'Attributes.Name', 'AttributeSet',
  137. 'AttributeSet.CharacterAttribute',
  138. 'AttributeSet.ColorAttribute',
  139. 'AttributeSet.FontAttribute',
  140. 'AttributeSet.ParagraphAttribute', 'AudioClip',
  141. 'AudioFileFormat', 'AudioFileFormat.Type',
  142. 'AudioFileReader', 'AudioFileWriter', 'AudioFormat',
  143. 'AudioFormat.Encoding', 'AudioInputStream',
  144. 'AudioPermission', 'AudioSystem',
  145. 'AuthenticationException',
  146. 'AuthenticationNotSupportedException',
  147. 'Authenticator', 'Autoscroll', 'AWTError',
  148. 'AWTEvent', 'AWTEventListener',
  149. 'AWTEventMulticaster', 'AWTException',
  150. 'AWTPermission', 'BadKind', 'BadLocationException',
  151. 'BAD_CONTEXT', 'BAD_INV_ORDER', 'BAD_OPERATION',
  152. 'BAD_PARAM', 'BAD_POLICY', 'BAD_POLICY_TYPE',
  153. 'BAD_POLICY_VALUE', 'BAD_TYPECODE', 'BandCombineOp',
  154. 'BandedSampleModel', 'BasicArrowButton',
  155. 'BasicAttribute', 'BasicAttributes', 'BasicBorders',
  156. 'BasicBorders.ButtonBorder',
  157. 'BasicBorders.FieldBorder',
  158. 'BasicBorders.MarginBorder',
  159. 'BasicBorders.MenuBarBorder',
  160. 'BasicBorders.RadioButtonBorder',
  161. 'BasicBorders.SplitPaneBorder',
  162. 'BasicBorders.ToggleButtonBorder',
  163. 'BasicButtonListener', 'BasicButtonUI',
  164. 'BasicCheckBoxMenuItemUI', 'BasicCheckBoxUI',
  165. 'BasicColorChooserUI', 'BasicComboBoxEditor',
  166. 'BasicComboBoxEditor.UIResource',
  167. 'BasicComboBoxRenderer',
  168. 'BasicComboBoxRenderer.UIResource',
  169. 'BasicComboBoxUI', 'BasicComboPopup',
  170. 'BasicDesktopIconUI', 'BasicDesktopPaneUI',
  171. 'BasicDirectoryModel', 'BasicEditorPaneUI',
  172. 'BasicFileChooserUI', 'BasicGraphicsUtils',
  173. 'BasicHTML', 'BasicIconFactory',
  174. 'BasicInternalFrameTitlePane',
  175. 'BasicInternalFrameUI', 'BasicLabelUI',
  176. 'BasicListUI', 'BasicLookAndFeel', 'BasicMenuBarUI',
  177. 'BasicMenuItemUI', 'BasicMenuUI',
  178. 'BasicOptionPaneUI',
  179. 'BasicOptionPaneUI.ButtonAreaLayout', 'BasicPanelUI',
  180. 'BasicPasswordFieldUI', 'BasicPermission',
  181. 'BasicPopupMenuSeparatorUI', 'BasicPopupMenuUI',
  182. 'BasicProgressBarUI', 'BasicRadioButtonMenuItemUI',
  183. 'BasicRadioButtonUI', 'BasicRootPaneUI',
  184. 'BasicScrollBarUI', 'BasicScrollPaneUI',
  185. 'BasicSeparatorUI', 'BasicSliderUI',
  186. 'BasicSplitPaneDivider', 'BasicSplitPaneUI',
  187. 'BasicStroke', 'BasicTabbedPaneUI',
  188. 'BasicTableHeaderUI', 'BasicTableUI',
  189. 'BasicTextAreaUI', 'BasicTextFieldUI',
  190. 'BasicTextPaneUI', 'BasicTextUI',
  191. 'BasicTextUI.BasicCaret',
  192. 'BasicTextUI.BasicHighlighter',
  193. 'BasicToggleButtonUI', 'BasicToolBarSeparatorUI',
  194. 'BasicToolBarUI', 'BasicToolTipUI', 'BasicTreeUI',
  195. 'BasicViewportUI', 'BatchUpdateException',
  196. 'BeanContext', 'BeanContextChild',
  197. 'BeanContextChildComponentProxy',
  198. 'BeanContextChildSupport',
  199. 'BeanContextContainerProxy', 'BeanContextEvent',
  200. 'BeanContextMembershipEvent',
  201. 'BeanContextMembershipListener', 'BeanContextProxy',
  202. 'BeanContextServiceAvailableEvent',
  203. 'BeanContextServiceProvider',
  204. 'BeanContextServiceProviderBeanInfo',
  205. 'BeanContextServiceRevokedEvent',
  206. 'BeanContextServiceRevokedListener',
  207. 'BeanContextServices', 'BeanContextServicesListener',
  208. 'BeanContextServicesSupport',
  209. 'BeanContextServicesSupport.BCSSServiceProvider',
  210. 'BeanContextSupport',
  211. 'BeanContextSupport.BCSIterator', 'BeanDescriptor',
  212. 'BeanInfo', 'Beans', 'BevelBorder', 'BigDecimal',
  213. 'BigInteger', 'BinaryRefAddr', 'BindException',
  214. 'Binding', 'BindingHelper', 'BindingHolder',
  215. 'BindingIterator', 'BindingIteratorHelper',
  216. 'BindingIteratorHolder', 'BindingIteratorOperations',
  217. 'BindingListHelper', 'BindingListHolder',
  218. 'BindingType', 'BindingTypeHelper',
  219. 'BindingTypeHolder', 'BitSet', 'Blob', 'BlockView',
  220. 'Book', 'Boolean', 'BooleanControl',
  221. 'BooleanControl.Type', 'BooleanHolder',
  222. 'BooleanSeqHelper', 'BooleanSeqHolder', 'Border',
  223. 'BorderFactory', 'BorderLayout', 'BorderUIResource',
  224. 'BorderUIResource.BevelBorderUIResource',
  225. 'BorderUIResource.CompoundBorderUIResource',
  226. 'BorderUIResource.EmptyBorderUIResource',
  227. 'BorderUIResource.EtchedBorderUIResource',
  228. 'BorderUIResource.LineBorderUIResource',
  229. 'BorderUIResource.MatteBorderUIResource',
  230. 'BorderUIResource.TitledBorderUIResource',
  231. 'BoundedRangeModel', 'Bounds', 'Box', 'Box.Filler',
  232. 'BoxedValueHelper', 'BoxLayout', 'BoxView',
  233. 'BreakIterator', 'BufferedImage',
  234. 'BufferedImageFilter', 'BufferedImageOp',
  235. 'BufferedInputStream', 'BufferedOutputStream',
  236. 'BufferedReader', 'BufferedWriter', 'Button',
  237. 'ButtonGroup', 'ButtonModel', 'ButtonUI', 'Byte',
  238. 'ByteArrayInputStream', 'ByteArrayOutputStream',
  239. 'ByteHolder', 'ByteLookupTable', 'Calendar',
  240. 'CallableStatement', 'CannotProceed',
  241. 'CannotProceedException', 'CannotProceedHelper',
  242. 'CannotProceedHolder', 'CannotRedoException',
  243. 'CannotUndoException', 'Canvas', 'CardLayout',
  244. 'Caret', 'CaretEvent', 'CaretListener', 'CellEditor',
  245. 'CellEditorListener', 'CellRendererPane',
  246. 'Certificate', 'Certificate.CertificateRep',
  247. 'CertificateEncodingException',
  248. 'CertificateException',
  249. 'CertificateExpiredException', 'CertificateFactory',
  250. 'CertificateFactorySpi',
  251. 'CertificateNotYetValidException',
  252. 'CertificateParsingException',
  253. 'ChangedCharSetException', 'ChangeEvent',
  254. 'ChangeListener', 'Character', 'Character.Subset',
  255. 'Character.UnicodeBlock', 'CharacterIterator',
  256. 'CharArrayReader', 'CharArrayWriter',
  257. 'CharConversionException', 'CharHolder',
  258. 'CharSeqHelper', 'CharSeqHolder', 'Checkbox',
  259. 'CheckboxGroup', 'CheckboxMenuItem',
  260. 'CheckedInputStream', 'CheckedOutputStream',
  261. 'Checksum', 'Choice', 'ChoiceFormat', 'Class',
  262. 'ClassCastException', 'ClassCircularityError',
  263. 'ClassDesc', 'ClassFormatError', 'ClassLoader',
  264. 'ClassNotFoundException', 'Clip', 'Clipboard',
  265. 'ClipboardOwner', 'Clob', 'Cloneable',
  266. 'CloneNotSupportedException', 'CMMException',
  267. 'CodeSource', 'CollationElementIterator',
  268. 'CollationKey', 'Collator', 'Collection',
  269. 'Collections', 'Color',
  270. 'ColorChooserComponentFactory', 'ColorChooserUI',
  271. 'ColorConvertOp', 'ColorModel',
  272. 'ColorSelectionModel', 'ColorSpace',
  273. 'ColorUIResource', 'ComboBoxEditor', 'ComboBoxModel',
  274. 'ComboBoxUI', 'ComboPopup', 'CommunicationException',
  275. 'COMM_FAILURE', 'Comparable', 'Comparator',
  276. 'Compiler', 'CompletionStatus',
  277. 'CompletionStatusHelper', 'Component',
  278. 'ComponentAdapter', 'ComponentColorModel',
  279. 'ComponentEvent', 'ComponentInputMap',
  280. 'ComponentInputMapUIResource', 'ComponentListener',
  281. 'ComponentOrientation', 'ComponentSampleModel',
  282. 'ComponentUI', 'ComponentView', 'Composite',
  283. 'CompositeContext', 'CompositeName', 'CompositeView',
  284. 'CompoundBorder', 'CompoundControl',
  285. 'CompoundControl.Type', 'CompoundEdit',
  286. 'CompoundName', 'ConcurrentModificationException',
  287. 'ConfigurationException', 'ConnectException',
  288. 'ConnectIOException', 'Connection', 'Constructor', 'Container',
  289. 'ContainerAdapter', 'ContainerEvent',
  290. 'ContainerListener', 'ContentHandler',
  291. 'ContentHandlerFactory', 'ContentModel', 'Context',
  292. 'ContextList', 'ContextNotEmptyException',
  293. 'ContextualRenderedImageFactory', 'Control',
  294. 'Control.Type', 'ControlFactory',
  295. 'ControllerEventListener', 'ConvolveOp', 'CRC32',
  296. 'CRL', 'CRLException', 'CropImageFilter', 'CSS',
  297. 'CSS.Attribute', 'CTX_RESTRICT_SCOPE',
  298. 'CubicCurve2D', 'CubicCurve2D.Double',
  299. 'CubicCurve2D.Float', 'Current', 'CurrentHelper',
  300. 'CurrentHolder', 'CurrentOperations', 'Cursor',
  301. 'Customizer', 'CustomMarshal', 'CustomValue',
  302. 'DatabaseMetaData', 'DataBuffer', 'DataBufferByte',
  303. 'DataBufferInt', 'DataBufferShort',
  304. 'DataBufferUShort', 'DataFlavor',
  305. 'DataFormatException', 'DatagramPacket',
  306. 'DatagramSocket', 'DatagramSocketImpl',
  307. 'DatagramSocketImplFactory', 'DataInput',
  308. 'DataInputStream', 'DataLine', 'DataLine.Info',
  309. 'DataOutput', 'DataOutputStream',
  310. 'DataTruncation', 'DATA_CONVERSION', 'Date',
  311. 'DateFormat', 'DateFormatSymbols', 'DebugGraphics',
  312. 'DecimalFormat', 'DecimalFormatSymbols',
  313. 'DefaultBoundedRangeModel', 'DefaultButtonModel',
  314. 'DefaultCaret', 'DefaultCellEditor',
  315. 'DefaultColorSelectionModel', 'DefaultComboBoxModel',
  316. 'DefaultDesktopManager', 'DefaultEditorKit',
  317. 'DefaultEditorKit.BeepAction',
  318. 'DefaultEditorKit.CopyAction',
  319. 'DefaultEditorKit.CutAction',
  320. 'DefaultEditorKit.DefaultKeyTypedAction',
  321. 'DefaultEditorKit.InsertBreakAction',
  322. 'DefaultEditorKit.InsertContentAction',
  323. 'DefaultEditorKit.InsertTabAction',
  324. 'DefaultEditorKit.PasteAction,',
  325. 'DefaultFocusManager', 'DefaultHighlighter',
  326. 'DefaultHighlighter.DefaultHighlightPainter',
  327. 'DefaultListCellRenderer',
  328. 'DefaultListCellRenderer.UIResource',
  329. 'DefaultListModel', 'DefaultListSelectionModel',
  330. 'DefaultMenuLayout', 'DefaultMetalTheme',
  331. 'DefaultMutableTreeNode',
  332. 'DefaultSingleSelectionModel',
  333. 'DefaultStyledDocument',
  334. 'DefaultStyledDocument.AttributeUndoableEdit',
  335. 'DefaultStyledDocument.ElementSpec',
  336. 'DefaultTableCellRenderer',
  337. 'DefaultTableCellRenderer.UIResource',
  338. 'DefaultTableColumnModel', 'DefaultTableModel',
  339. 'DefaultTextUI', 'DefaultTreeCellEditor',
  340. 'DefaultTreeCellRenderer', 'DefaultTreeModel',
  341. 'DefaultTreeSelectionModel', 'DefinitionKind',
  342. 'DefinitionKindHelper', 'Deflater',
  343. 'DeflaterOutputStream', 'Delegate', 'DesignMode',
  344. 'DesktopIconUI', 'DesktopManager', 'DesktopPaneUI',
  345. 'DGC', 'Dialog', 'Dictionary', 'DigestException',
  346. 'DigestInputStream', 'DigestOutputStream',
  347. 'Dimension', 'Dimension2D', 'DimensionUIResource',
  348. 'DirContext', 'DirectColorModel', 'DirectoryManager',
  349. 'DirObjectFactory', 'DirStateFactory',
  350. 'DirStateFactory.Result', 'DnDConstants', 'Document',
  351. 'DocumentEvent', 'DocumentEvent.ElementChange',
  352. 'DocumentEvent.EventType', 'DocumentListener',
  353. 'DocumentParser', 'DomainCombiner', 'DomainManager',
  354. 'DomainManagerOperations', 'Double', 'DoubleHolder',
  355. 'DoubleSeqHelper', 'DoubleSeqHolder',
  356. 'DragGestureEvent', 'DragGestureListener',
  357. 'DragGestureRecognizer', 'DragSource',
  358. 'DragSourceContext', 'DragSourceDragEvent',
  359. 'DragSourceDropEvent', 'DragSourceEvent',
  360. 'DragSourceListener', 'Driver', 'DriverManager',
  361. 'DriverPropertyInfo', 'DropTarget',
  362. 'DropTarget.DropTargetAutoScroller',
  363. 'DropTargetContext', 'DropTargetDragEvent',
  364. 'DropTargetDropEvent', 'DropTargetEvent',
  365. 'DropTargetListener', 'DSAKey',
  366. 'DSAKeyPairGenerator', 'DSAParameterSpec',
  367. 'DSAParams', 'DSAPrivateKey', 'DSAPrivateKeySpec',
  368. 'DSAPublicKey', 'DSAPublicKeySpec', 'DTD',
  369. 'DTDConstants', 'DynamicImplementation', 'DynAny',
  370. 'DynArray', 'DynEnum', 'DynFixed', 'DynSequence',
  371. 'DynStruct', 'DynUnion', 'DynValue', 'EditorKit',
  372. 'Element', 'ElementIterator', 'Ellipse2D',
  373. 'Ellipse2D.Double', 'Ellipse2D.Float', 'EmptyBorder',
  374. 'EmptyStackException', 'EncodedKeySpec', 'Entity',
  375. 'EnumControl', 'EnumControl.Type', 'Enumeration',
  376. 'Environment', 'EOFException', 'Error',
  377. 'EtchedBorder', 'Event', 'EventContext',
  378. 'EventDirContext', 'EventListener',
  379. 'EventListenerList', 'EventObject', 'EventQueue',
  380. 'EventSetDescriptor', 'Exception',
  381. 'ExceptionInInitializerError', 'ExceptionList',
  382. 'ExpandVetoException', 'ExportException',
  383. 'ExtendedRequest', 'ExtendedResponse',
  384. 'Externalizable', 'FeatureDescriptor', 'Field',
  385. 'FieldNameHelper', 'FieldPosition', 'FieldView',
  386. 'File', 'FileChooserUI', 'FileDescriptor',
  387. 'FileDialog', 'FileFilter',
  388. 'FileInputStream', 'FilenameFilter', 'FileNameMap',
  389. 'FileNotFoundException', 'FileOutputStream',
  390. 'FilePermission', 'FileReader', 'FileSystemView',
  391. 'FileView', 'FileWriter', 'FilteredImageSource',
  392. 'FilterInputStream', 'FilterOutputStream',
  393. 'FilterReader', 'FilterWriter',
  394. 'FixedHeightLayoutCache', 'FixedHolder',
  395. 'FlatteningPathIterator', 'FlavorMap', 'Float',
  396. 'FloatControl', 'FloatControl.Type', 'FloatHolder',
  397. 'FloatSeqHelper', 'FloatSeqHolder', 'FlowLayout',
  398. 'FlowView', 'FlowView.FlowStrategy', 'FocusAdapter',
  399. 'FocusEvent', 'FocusListener', 'FocusManager',
  400. 'Font', 'FontFormatException', 'FontMetrics',
  401. 'FontRenderContext', 'FontUIResource', 'Format',
  402. 'FormatConversionProvider', 'FormView', 'Frame',
  403. 'FREE_MEM', 'GapContent', 'GeneralPath',
  404. 'GeneralSecurityException', 'GlyphJustificationInfo',
  405. 'GlyphMetrics', 'GlyphVector', 'GlyphView',
  406. 'GlyphView.GlyphPainter', 'GradientPaint',
  407. 'GraphicAttribute', 'Graphics', 'Graphics2D',
  408. 'GraphicsConfigTemplate', 'GraphicsConfiguration',
  409. 'GraphicsDevice', 'GraphicsEnvironment',
  410. 'GrayFilter', 'GregorianCalendar',
  411. 'GridBagConstraints', 'GridBagLayout', 'GridLayout',
  412. 'Group', 'Guard', 'GuardedObject', 'GZIPInputStream',
  413. 'GZIPOutputStream', 'HasControls', 'HashMap',
  414. 'HashSet', 'Hashtable', 'HierarchyBoundsAdapter',
  415. 'HierarchyBoundsListener', 'HierarchyEvent',
  416. 'HierarchyListener', 'Highlighter',
  417. 'Highlighter.Highlight',
  418. 'Highlighter.HighlightPainter', 'HTML',
  419. 'HTML.Attribute', 'HTML.Tag', 'HTML.UnknownTag',
  420. 'HTMLDocument', 'HTMLDocument.Iterator',
  421. 'HTMLEditorKit', 'HTMLEditorKit.HTMLFactory',
  422. 'HTMLEditorKit.HTMLTextAction',
  423. 'HTMLEditorKit.InsertHTMLTextAction',
  424. 'HTMLEditorKit.LinkController',
  425. 'HTMLEditorKit.Parser',
  426. 'HTMLEditorKit.ParserCallback',
  427. 'HTMLFrameHyperlinkEvent', 'HTMLWriter',
  428. 'HttpURLConnection', 'HyperlinkEvent',
  429. 'HyperlinkEvent.EventType', 'HyperlinkListener',
  430. 'ICC_ColorSpace', 'ICC_Profile', 'ICC_ProfileGray',
  431. 'ICC_ProfileRGB', 'Icon', 'IconUIResource',
  432. 'IconView', 'IdentifierHelper', 'Identity',
  433. 'IdentityScope', 'IDLEntity', 'IDLType',
  434. 'IDLTypeHelper', 'IDLTypeOperations',
  435. 'IllegalAccessError', 'IllegalAccessException',
  436. 'IllegalArgumentException',
  437. 'IllegalComponentStateException',
  438. 'IllegalMonitorStateException',
  439. 'IllegalPathStateException', 'IllegalStateException',
  440. 'IllegalThreadStateException', 'Image',
  441. 'ImageConsumer', 'ImageFilter',
  442. 'ImageGraphicAttribute', 'ImageIcon',
  443. 'ImageObserver', 'ImageProducer',
  444. 'ImagingOpException', 'IMP_LIMIT',
  445. 'IncompatibleClassChangeError',
  446. 'InconsistentTypeCode', 'IndexColorModel',
  447. 'IndexedPropertyDescriptor',
  448. 'IndexOutOfBoundsException', 'IndirectionException',
  449. 'InetAddress', 'Inflater', 'InflaterInputStream',
  450. 'InheritableThreadLocal', 'InitialContext',
  451. 'InitialContextFactory',
  452. 'InitialContextFactoryBuilder', 'InitialDirContext',
  453. 'INITIALIZE', 'Initializer', 'InitialLdapContext',
  454. 'InlineView', 'InputContext', 'InputEvent',
  455. 'InputMap', 'InputMapUIResource', 'InputMethod',
  456. 'InputMethodContext', 'InputMethodDescriptor',
  457. 'InputMethodEvent', 'InputMethodHighlight',
  458. 'InputMethodListener', 'InputMethodRequests',
  459. 'InputStream',
  460. 'InputStreamReader', 'InputSubset', 'InputVerifier',
  461. 'Insets', 'InsetsUIResource', 'InstantiationError',
  462. 'InstantiationException', 'Instrument',
  463. 'InsufficientResourcesException', 'Integer',
  464. 'INTERNAL', 'InternalError', 'InternalFrameAdapter',
  465. 'InternalFrameEvent', 'InternalFrameListener',
  466. 'InternalFrameUI', 'InterruptedException',
  467. 'InterruptedIOException',
  468. 'InterruptedNamingException', 'INTF_REPOS',
  469. 'IntHolder', 'IntrospectionException',
  470. 'Introspector', 'Invalid',
  471. 'InvalidAlgorithmParameterException',
  472. 'InvalidAttributeIdentifierException',
  473. 'InvalidAttributesException',
  474. 'InvalidAttributeValueException',
  475. 'InvalidClassException',
  476. 'InvalidDnDOperationException',
  477. 'InvalidKeyException', 'InvalidKeySpecException',
  478. 'InvalidMidiDataException', 'InvalidName',
  479. 'InvalidNameException',
  480. 'InvalidNameHelper', 'InvalidNameHolder',
  481. 'InvalidObjectException',
  482. 'InvalidParameterException',
  483. 'InvalidParameterSpecException',
  484. 'InvalidSearchControlsException',
  485. 'InvalidSearchFilterException', 'InvalidSeq',
  486. 'InvalidTransactionException', 'InvalidValue',
  487. 'INVALID_TRANSACTION', 'InvocationEvent',
  488. 'InvocationHandler', 'InvocationTargetException',
  489. 'InvokeHandler', 'INV_FLAG', 'INV_IDENT',
  490. 'INV_OBJREF', 'INV_POLICY', 'IOException',
  491. 'IRObject', 'IRObjectOperations', 'IstringHelper',
  492. 'ItemEvent', 'ItemListener', 'ItemSelectable',
  493. 'Iterator', 'JApplet', 'JarEntry', 'JarException',
  494. 'JarFile', 'JarInputStream', 'JarOutputStream',
  495. 'JarURLConnection', 'JButton', 'JCheckBox',
  496. 'JCheckBoxMenuItem', 'JColorChooser', 'JComboBox',
  497. 'JComboBox.KeySelectionManager', 'JComponent',
  498. 'JDesktopPane', 'JDialog', 'JEditorPane',
  499. 'JFileChooser', 'JFrame', 'JInternalFrame',
  500. 'JInternalFrame.JDesktopIcon', 'JLabel',
  501. 'JLayeredPane', 'JList', 'JMenu', 'JMenuBar',
  502. 'JMenuItem', 'JobAttributes',
  503. 'JobAttributes.DefaultSelectionType',
  504. 'JobAttributes.DestinationType',
  505. 'JobAttributes.DialogType',
  506. 'JobAttributes.MultipleDocumentHandlingType',
  507. 'JobAttributes.SidesType', 'JOptionPane', 'JPanel',
  508. 'JPasswordField', 'JPopupMenu',
  509. 'JPopupMenu.Separator', 'JProgressBar',
  510. 'JRadioButton', 'JRadioButtonMenuItem', 'JRootPane',
  511. 'JScrollBar', 'JScrollPane', 'JSeparator', 'JSlider',
  512. 'JSplitPane', 'JTabbedPane', 'JTable',
  513. 'JTableHeader', 'JTextArea', 'JTextComponent',
  514. 'JTextComponent.KeyBinding', 'JTextField',
  515. 'JTextPane', 'JToggleButton',
  516. 'JToggleButton.ToggleButtonModel', 'JToolBar',
  517. 'JToolBar.Separator', 'JToolTip', 'JTree',
  518. 'JTree.DynamicUtilTreeNode',
  519. 'JTree.EmptySelectionModel', 'JViewport', 'JWindow',
  520. 'Kernel', 'Key', 'KeyAdapter', 'KeyEvent',
  521. 'KeyException', 'KeyFactory', 'KeyFactorySpi',
  522. 'KeyListener', 'KeyManagementException', 'Keymap',
  523. 'KeyPair', 'KeyPairGenerator', 'KeyPairGeneratorSpi',
  524. 'KeySpec', 'KeyStore', 'KeyStoreException',
  525. 'KeyStoreSpi', 'KeyStroke', 'Label', 'LabelUI',
  526. 'LabelView', 'LastOwnerException',
  527. 'LayeredHighlighter',
  528. 'LayeredHighlighter.LayerPainter', 'LayoutManager',
  529. 'LayoutManager2', 'LayoutQueue', 'LdapContext',
  530. 'LdapReferralException', 'Lease',
  531. 'LimitExceededException', 'Line', 'Line.Info',
  532. 'Line2D', 'Line2D.Double', 'Line2D.Float',
  533. 'LineBorder', 'LineBreakMeasurer', 'LineEvent',
  534. 'LineEvent.Type', 'LineListener', 'LineMetrics',
  535. 'LineNumberInputStream', 'LineNumberReader',
  536. 'LineUnavailableException', 'LinkageError',
  537. 'LinkedList', 'LinkException', 'LinkLoopException',
  538. 'LinkRef', 'List', 'ListCellRenderer',
  539. 'ListDataEvent', 'ListDataListener', 'ListIterator',
  540. 'ListModel', 'ListResourceBundle',
  541. 'ListSelectionEvent', 'ListSelectionListener',
  542. 'ListSelectionModel', 'ListUI', 'ListView',
  543. 'LoaderHandler', 'Locale', 'LocateRegistry',
  544. 'LogStream', 'Long', 'LongHolder',
  545. 'LongLongSeqHelper', 'LongLongSeqHolder',
  546. 'LongSeqHelper', 'LongSeqHolder', 'LookAndFeel',
  547. 'LookupOp', 'LookupTable', 'MalformedLinkException',
  548. 'MalformedURLException', 'Manifest', 'Map',
  549. 'Map.Entry', 'MARSHAL', 'MarshalException',
  550. 'MarshalledObject', 'Math', 'MatteBorder',
  551. 'MediaTracker', 'Member', 'MemoryImageSource',
  552. 'Menu', 'MenuBar', 'MenuBarUI', 'MenuComponent',
  553. 'MenuContainer', 'MenuDragMouseEvent',
  554. 'MenuDragMouseListener', 'MenuElement', 'MenuEvent',
  555. 'MenuItem', 'MenuItemUI', 'MenuKeyEvent',
  556. 'MenuKeyListener', 'MenuListener',
  557. 'MenuSelectionManager', 'MenuShortcut',
  558. 'MessageDigest', 'MessageDigestSpi', 'MessageFormat',
  559. 'MetaEventListener', 'MetalBorders',
  560. 'MetalBorders.ButtonBorder',
  561. 'MetalBorders.Flush3DBorder',
  562. 'MetalBorders.InternalFrameBorder',
  563. 'MetalBorders.MenuBarBorder',
  564. 'MetalBorders.MenuItemBorder',
  565. 'MetalBorders.OptionDialogBorder',
  566. 'MetalBorders.PaletteBorder',
  567. 'MetalBorders.PopupMenuBorder',
  568. 'MetalBorders.RolloverButtonBorder',
  569. 'MetalBorders.ScrollPaneBorder',
  570. 'MetalBorders.TableHeaderBorder',
  571. 'MetalBorders.TextFieldBorder',
  572. 'MetalBorders.ToggleButtonBorder',
  573. 'MetalBorders.ToolBarBorder', 'MetalButtonUI',
  574. 'MetalCheckBoxIcon', 'MetalCheckBoxUI',
  575. 'MetalComboBoxButton', 'MetalComboBoxEditor',
  576. 'MetalComboBoxEditor.UIResource',
  577. 'MetalComboBoxIcon', 'MetalComboBoxUI',
  578. 'MetalDesktopIconUI', 'MetalFileChooserUI',
  579. 'MetalIconFactory', 'MetalIconFactory.FileIcon16',
  580. 'MetalIconFactory.FolderIcon16',
  581. 'MetalIconFactory.PaletteCloseIcon',
  582. 'MetalIconFactory.TreeControlIcon',
  583. 'MetalIconFactory.TreeFolderIcon',
  584. 'MetalIconFactory.TreeLeafIcon',
  585. 'MetalInternalFrameTitlePane',
  586. 'MetalInternalFrameUI', 'MetalLabelUI',
  587. 'MetalLookAndFeel', 'MetalPopupMenuSeparatorUI',
  588. 'MetalProgressBarUI', 'MetalRadioButtonUI',
  589. 'MetalScrollBarUI', 'MetalScrollButton',
  590. 'MetalScrollPaneUI', 'MetalSeparatorUI',
  591. 'MetalSliderUI', 'MetalSplitPaneUI',
  592. 'MetalTabbedPaneUI', 'MetalTextFieldUI',
  593. 'MetalTheme', 'MetalToggleButtonUI',
  594. 'MetalToolBarUI', 'MetalToolTipUI', 'MetalTreeUI',
  595. 'MetaMessage', 'Method', 'MethodDescriptor',
  596. 'MidiChannel', 'MidiDevice', 'MidiDevice.Info',
  597. 'MidiDeviceProvider', 'MidiEvent', 'MidiFileFormat',
  598. 'MidiFileReader', 'MidiFileWriter', 'MidiMessage',
  599. 'MidiSystem', 'MidiUnavailableException',
  600. 'MimeTypeParseException', 'MinimalHTMLWriter',
  601. 'MissingResourceException', 'Mixer', 'Mixer.Info',
  602. 'MixerProvider', 'ModificationItem', 'Modifier',
  603. 'MouseAdapter', 'MouseDragGestureRecognizer',
  604. 'MouseEvent', 'MouseInputAdapter',
  605. 'MouseInputListener', 'MouseListener',
  606. 'MouseMotionAdapter', 'MouseMotionListener',
  607. 'MultiButtonUI', 'MulticastSocket',
  608. 'MultiColorChooserUI', 'MultiComboBoxUI',
  609. 'MultiDesktopIconUI', 'MultiDesktopPaneUI',
  610. 'MultiFileChooserUI', 'MultiInternalFrameUI',
  611. 'MultiLabelUI', 'MultiListUI', 'MultiLookAndFeel',
  612. 'MultiMenuBarUI', 'MultiMenuItemUI',
  613. 'MultiOptionPaneUI', 'MultiPanelUI',
  614. 'MultiPixelPackedSampleModel', 'MultipleMaster',
  615. 'MultiPopupMenuUI', 'MultiProgressBarUI',
  616. 'MultiScrollBarUI', 'MultiScrollPaneUI',
  617. 'MultiSeparatorUI', 'MultiSliderUI',
  618. 'MultiSplitPaneUI', 'MultiTabbedPaneUI',
  619. 'MultiTableHeaderUI', 'MultiTableUI', 'MultiTextUI',
  620. 'MultiToolBarUI', 'MultiToolTipUI', 'MultiTreeUI',
  621. 'MultiViewportUI', 'MutableAttributeSet',
  622. 'MutableComboBoxModel', 'MutableTreeNode', 'Name',
  623. 'NameAlreadyBoundException', 'NameClassPair',
  624. 'NameComponent', 'NameComponentHelper',
  625. 'NameComponentHolder', 'NamedValue', 'NameHelper',
  626. 'NameHolder', 'NameNotFoundException', 'NameParser',
  627. 'NamespaceChangeListener', 'NameValuePair',
  628. 'NameValuePairHelper', 'Naming', 'NamingContext',
  629. 'NamingContextHelper', 'NamingContextHolder',
  630. 'NamingContextOperations', 'NamingEnumeration',
  631. 'NamingEvent', 'NamingException',
  632. 'NamingExceptionEvent', 'NamingListener',
  633. 'NamingManager', 'NamingSecurityException',
  634. 'NegativeArraySizeException', 'NetPermission',
  635. 'NoClassDefFoundError', 'NoInitialContextException',
  636. 'NoninvertibleTransformException',
  637. 'NoPermissionException', 'NoRouteToHostException',
  638. 'NoSuchAlgorithmException',
  639. 'NoSuchAttributeException', 'NoSuchElementException',
  640. 'NoSuchFieldError', 'NoSuchFieldException',
  641. 'NoSuchMethodError', 'NoSuchMethodException',
  642. 'NoSuchObjectException', 'NoSuchProviderException',
  643. 'NotActiveException', 'NotBoundException',
  644. 'NotContextException', 'NotEmpty', 'NotEmptyHelper',
  645. 'NotEmptyHolder', 'NotFound', 'NotFoundHelper',
  646. 'NotFoundHolder', 'NotFoundReason',
  647. 'NotFoundReasonHelper', 'NotFoundReasonHolder',
  648. 'NotOwnerException', 'NotSerializableException',
  649. 'NO_IMPLEMENT', 'NO_MEMORY', 'NO_PERMISSION',
  650. 'NO_RESOURCES', 'NO_RESPONSE',
  651. 'NullPointerException', 'Number', 'NumberFormat',
  652. 'NumberFormatException', 'NVList', 'Object',
  653. 'ObjectChangeListener', 'ObjectFactory',
  654. 'ObjectFactoryBuilder', 'ObjectHelper',
  655. 'ObjectHolder', 'ObjectImpl',
  656. 'ObjectInput', 'ObjectInputStream',
  657. 'ObjectInputStream.GetField',
  658. 'ObjectInputValidation', 'ObjectOutput',
  659. 'ObjectOutputStream', 'ObjectOutputStream.PutField',
  660. 'ObjectStreamClass', 'ObjectStreamConstants',
  661. 'ObjectStreamException', 'ObjectStreamField',
  662. 'ObjectView', 'OBJECT_NOT_EXIST', 'ObjID',
  663. 'OBJ_ADAPTER', 'Observable', 'Observer',
  664. 'OctetSeqHelper', 'OctetSeqHolder', 'OMGVMCID',
  665. 'OpenType', 'Operation',
  666. 'OperationNotSupportedException', 'Option',
  667. 'OptionalDataException', 'OptionPaneUI', 'ORB',
  668. 'OutOfMemoryError', 'OutputStream',
  669. 'OutputStreamWriter', 'OverlayLayout', 'Owner',
  670. 'Package', 'PackedColorModel', 'Pageable',
  671. 'PageAttributes', 'PageAttributes.ColorType',
  672. 'PageAttributes.MediaType',
  673. 'PageAttributes.OrientationRequestedType',
  674. 'PageAttributes.OriginType',
  675. 'PageAttributes.PrintQualityType', 'PageFormat',
  676. 'Paint', 'PaintContext', 'PaintEvent', 'Panel',
  677. 'PanelUI', 'Paper', 'ParagraphView',
  678. 'ParameterBlock', 'ParameterDescriptor',
  679. 'ParseException', 'ParsePosition', 'Parser',
  680. 'ParserDelegator', 'PartialResultException',
  681. 'PasswordAuthentication', 'PasswordView', 'Patch',
  682. 'PathIterator', 'Permission',
  683. 'PermissionCollection', 'Permissions',
  684. 'PERSIST_STORE', 'PhantomReference',
  685. 'PipedInputStream', 'PipedOutputStream',
  686. 'PipedReader', 'PipedWriter', 'PixelGrabber',
  687. 'PixelInterleavedSampleModel', 'PKCS8EncodedKeySpec',
  688. 'PlainDocument', 'PlainView', 'Point', 'Point2D',
  689. 'Point2D.Double', 'Point2D.Float', 'Policy',
  690. 'PolicyError', 'PolicyHelper',
  691. 'PolicyHolder', 'PolicyListHelper',
  692. 'PolicyListHolder', 'PolicyOperations',
  693. 'PolicyTypeHelper', 'Polygon', 'PopupMenu',
  694. 'PopupMenuEvent', 'PopupMenuListener', 'PopupMenuUI',
  695. 'Port', 'Port.Info', 'PortableRemoteObject',
  696. 'PortableRemoteObjectDelegate', 'Position',
  697. 'Position.Bias', 'PreparedStatement', 'Principal',
  698. 'PrincipalHolder', 'Printable',
  699. 'PrinterAbortException', 'PrinterException',
  700. 'PrinterGraphics', 'PrinterIOException',
  701. 'PrinterJob', 'PrintGraphics', 'PrintJob',
  702. 'PrintStream', 'PrintWriter', 'PrivateKey',
  703. 'PRIVATE_MEMBER', 'PrivilegedAction',
  704. 'PrivilegedActionException',
  705. 'PrivilegedExceptionAction', 'Process',
  706. 'ProfileDataException', 'ProgressBarUI',
  707. 'ProgressMonitor', 'ProgressMonitorInputStream',
  708. 'Properties', 'PropertyChangeEvent',
  709. 'PropertyChangeListener', 'PropertyChangeSupport',
  710. 'PropertyDescriptor', 'PropertyEditor',
  711. 'PropertyEditorManager', 'PropertyEditorSupport',
  712. 'PropertyPermission', 'PropertyResourceBundle',
  713. 'PropertyVetoException', 'ProtectionDomain',
  714. 'ProtocolException', 'Provider', 'ProviderException',
  715. 'Proxy', 'PublicKey', 'PUBLIC_MEMBER',
  716. 'PushbackInputStream', 'PushbackReader',
  717. 'QuadCurve2D', 'QuadCurve2D.Double',
  718. 'QuadCurve2D.Float', 'Random', 'RandomAccessFile',
  719. 'Raster', 'RasterFormatException', 'RasterOp',
  720. 'Reader', 'Receiver', 'Rectangle', 'Rectangle2D',
  721. 'Rectangle2D.Double', 'Rectangle2D.Float',
  722. 'RectangularShape', 'Ref', 'RefAddr', 'Reference',
  723. 'Referenceable', 'ReferenceQueue',
  724. 'ReferralException', 'ReflectPermission', 'Registry',
  725. 'RegistryHandler', 'RemarshalException', 'Remote',
  726. 'RemoteCall', 'RemoteException', 'RemoteObject',
  727. 'RemoteRef', 'RemoteServer', 'RemoteStub',
  728. 'RenderableImage', 'RenderableImageOp',
  729. 'RenderableImageProducer', 'RenderContext',
  730. 'RenderedImage', 'RenderedImageFactory', 'Renderer',
  731. 'RenderingHints', 'RenderingHints.Key',
  732. 'RepaintManager', 'ReplicateScaleFilter',
  733. 'Repository', 'RepositoryIdHelper', 'Request',
  734. 'RescaleOp', 'Resolver', 'ResolveResult',
  735. 'ResourceBundle', 'ResponseHandler', 'ResultSet',
  736. 'ResultSetMetaData', 'ReverbType', 'RGBImageFilter',
  737. 'RMIClassLoader', 'RMIClientSocketFactory',
  738. 'RMIFailureHandler', 'RMISecurityException',
  739. 'RMISecurityManager', 'RMIServerSocketFactory',
  740. 'RMISocketFactory', 'Robot', 'RootPaneContainer',
  741. 'RootPaneUI', 'RoundRectangle2D',
  742. 'RoundRectangle2D.Double', 'RoundRectangle2D.Float',
  743. 'RowMapper', 'RSAKey', 'RSAKeyGenParameterSpec',
  744. 'RSAPrivateCrtKey', 'RSAPrivateCrtKeySpec',
  745. 'RSAPrivateKey', 'RSAPrivateKeySpec', 'RSAPublicKey',
  746. 'RSAPublicKeySpec', 'RTFEditorKit',
  747. 'RuleBasedCollator', 'Runnable', 'RunTime',
  748. 'Runtime', 'RuntimeException', 'RunTimeOperations',
  749. 'RuntimePermission', 'SampleModel',
  750. 'SchemaViolationException', 'Scrollable',
  751. 'Scrollbar', 'ScrollBarUI', 'ScrollPane',
  752. 'ScrollPaneConstants', 'ScrollPaneLayout',
  753. 'ScrollPaneLayout.UIResource', 'ScrollPaneUI',
  754. 'SearchControls', 'SearchResult',
  755. 'SecureClassLoader', 'SecureRandom',
  756. 'SecureRandomSpi', 'Security', 'SecurityException',
  757. 'SecurityManager', 'SecurityPermission', 'Segment',
  758. 'SeparatorUI', 'Sequence', 'SequenceInputStream',
  759. 'Sequencer', 'Sequencer.SyncMode', 'Serializable',
  760. 'SerializablePermission', 'ServantObject',
  761. 'ServerCloneException', 'ServerError',
  762. 'ServerException', 'ServerNotActiveException',
  763. 'ServerRef', 'ServerRequest',
  764. 'ServerRuntimeException', 'ServerSocket',
  765. 'ServiceDetail', 'ServiceDetailHelper',
  766. 'ServiceInformation', 'ServiceInformationHelper',
  767. 'ServiceInformationHolder',
  768. 'ServiceUnavailableException', 'Set',
  769. 'SetOverrideType', 'SetOverrideTypeHelper', 'Shape',
  770. 'ShapeGraphicAttribute', 'Short', 'ShortHolder',
  771. 'ShortLookupTable', 'ShortMessage', 'ShortSeqHelper',
  772. 'ShortSeqHolder', 'Signature', 'SignatureException',
  773. 'SignatureSpi', 'SignedObject', 'Signer',
  774. 'SimpleAttributeSet', 'SimpleBeanInfo',
  775. 'SimpleDateFormat', 'SimpleTimeZone',
  776. 'SinglePixelPackedSampleModel',
  777. 'SingleSelectionModel', 'SizeLimitExceededException',
  778. 'SizeRequirements', 'SizeSequence', 'Skeleton',
  779. 'SkeletonMismatchException',
  780. 'SkeletonNotFoundException', 'SliderUI', 'Socket',
  781. 'SocketException', 'SocketImpl', 'SocketImplFactory',
  782. 'SocketOptions', 'SocketPermission',
  783. 'SocketSecurityException', 'SoftBevelBorder',
  784. 'SoftReference', 'SortedMap', 'SortedSet',
  785. 'Soundbank', 'SoundbankReader', 'SoundbankResource',
  786. 'SourceDataLine', 'SplitPaneUI', 'SQLData',
  787. 'SQLException', 'SQLInput', 'SQLOutput',
  788. 'SQLPermission', 'SQLWarning', 'Stack',
  789. 'StackOverflowError', 'StateEdit', 'StateEditable',
  790. 'StateFactory', 'Statement', 'Streamable',
  791. 'StreamableValue', 'StreamCorruptedException',
  792. 'StreamTokenizer', 'StrictMath', 'String',
  793. 'StringBuffer', 'StringBufferInputStream',
  794. 'StringCharacterIterator', 'StringContent',
  795. 'StringHolder', 'StringIndexOutOfBoundsException',
  796. 'StringReader', 'StringRefAddr', 'StringSelection',
  797. 'StringTokenizer', 'StringValueHelper',
  798. 'StringWriter', 'Stroke', 'Struct', 'StructMember',
  799. 'StructMemberHelper', 'Stub', 'StubDelegate',
  800. 'StubNotFoundException', 'Style', 'StyleConstants',
  801. 'StyleConstants.CharacterConstants',
  802. 'StyleConstants.ColorConstants',
  803. 'StyleConstants.FontConstants',
  804. 'StyleConstants.ParagraphConstants', 'StyleContext',
  805. 'StyledDocument', 'StyledEditorKit',
  806. 'StyledEditorKit.AlignmentAction',
  807. 'StyledEditorKit.BoldAction',
  808. 'StyledEditorKit.FontFamilyAction',
  809. 'StyledEditorKit.FontSizeAction',
  810. 'StyledEditorKit.ForegroundAction',
  811. 'StyledEditorKit.ItalicAction',
  812. 'StyledEditorKit.StyledTextAction',
  813. 'StyledEditorKit.UnderlineAction', 'StyleSheet',
  814. 'StyleSheet.BoxPainter', 'StyleSheet.ListPainter',
  815. 'SwingConstants', 'SwingPropertyChangeSupport',
  816. 'SwingUtilities', 'SyncFailedException',
  817. 'Synthesizer', 'SysexMessage', 'System',
  818. 'SystemColor', 'SystemException', 'SystemFlavorMap',
  819. 'TabableView', 'TabbedPaneUI', 'TabExpander',
  820. 'TableCellEditor', 'TableCellRenderer',
  821. 'TableColumn', 'TableColumnModel',
  822. 'TableColumnModelEvent', 'TableColumnModelListener',
  823. 'TableHeaderUI', 'TableModel', 'TableModelEvent',
  824. 'TableModelListener', 'TableUI', 'TableView',
  825. 'TabSet', 'TabStop', 'TagElement', 'TargetDataLine',
  826. 'TCKind', 'TextAction', 'TextArea', 'TextAttribute',
  827. 'TextComponent', 'TextEvent', 'TextField',
  828. 'TextHitInfo', 'TextLayout',
  829. 'TextLayout.CaretPolicy', 'TextListener',
  830. 'TextMeasurer', 'TextUI', 'TexturePaint', 'Thread',
  831. 'ThreadDeath', 'ThreadGroup', 'ThreadLocal',
  832. 'Throwable', 'Tie', 'TileObserver', 'Time',
  833. 'TimeLimitExceededException', 'Timer',
  834. 'TimerTask', 'Timestamp', 'TimeZone', 'TitledBorder',
  835. 'ToolBarUI', 'Toolkit', 'ToolTipManager',
  836. 'ToolTipUI', 'TooManyListenersException', 'Track',
  837. 'TransactionRequiredException',
  838. 'TransactionRolledbackException',
  839. 'TRANSACTION_REQUIRED', 'TRANSACTION_ROLLEDBACK',
  840. 'Transferable', 'TransformAttribute', 'TRANSIENT',
  841. 'Transmitter', 'Transparency', 'TreeCellEditor',
  842. 'TreeCellRenderer', 'TreeExpansionEvent',
  843. 'TreeExpansionListener', 'TreeMap', 'TreeModel',
  844. 'TreeModelEvent', 'TreeModelListener', 'TreeNode',
  845. 'TreePath', 'TreeSelectionEvent',
  846. 'TreeSelectionListener', 'TreeSelectionModel',
  847. 'TreeSet', 'TreeUI', 'TreeWillExpandListener',
  848. 'TypeCode', 'TypeCodeHolder', 'TypeMismatch',
  849. 'Types', 'UID', 'UIDefaults',
  850. 'UIDefaults.ActiveValue', 'UIDefaults.LazyInputMap',
  851. 'UIDefaults.LazyValue', 'UIDefaults.ProxyLazyValue',
  852. 'UIManager', 'UIManager.LookAndFeelInfo',
  853. 'UIResource', 'ULongLongSeqHelper',
  854. 'ULongLongSeqHolder', 'ULongSeqHelper',
  855. 'ULongSeqHolder', 'UndeclaredThrowableException',
  856. 'UndoableEdit', 'UndoableEditEvent',
  857. 'UndoableEditListener', 'UndoableEditSupport',
  858. 'UndoManager', 'UnexpectedException',
  859. 'UnicastRemoteObject', 'UnionMember',
  860. 'UnionMemberHelper', 'UNKNOWN', 'UnknownError',
  861. 'UnknownException', 'UnknownGroupException',
  862. 'UnknownHostException',
  863. 'UnknownObjectException', 'UnknownServiceException',
  864. 'UnknownUserException', 'UnmarshalException',
  865. 'UnrecoverableKeyException', 'Unreferenced',
  866. 'UnresolvedPermission', 'UnsatisfiedLinkError',
  867. 'UnsolicitedNotification',
  868. 'UnsolicitedNotificationEvent',
  869. 'UnsolicitedNotificationListener',
  870. 'UnsupportedAudioFileException',
  871. 'UnsupportedClassVersionError',
  872. 'UnsupportedEncodingException',
  873. 'UnsupportedFlavorException',
  874. 'UnsupportedLookAndFeelException',
  875. 'UnsupportedOperationException',
  876. 'UNSUPPORTED_POLICY', 'UNSUPPORTED_POLICY_VALUE',
  877. 'URL', 'URLClassLoader', 'URLConnection',
  878. 'URLDecoder', 'URLEncoder', 'URLStreamHandler',
  879. 'URLStreamHandlerFactory', 'UserException',
  880. 'UShortSeqHelper', 'UShortSeqHolder',
  881. 'UTFDataFormatException', 'Util', 'UtilDelegate',
  882. 'Utilities', 'ValueBase', 'ValueBaseHelper',
  883. 'ValueBaseHolder', 'ValueFactory', 'ValueHandler',
  884. 'ValueMember', 'ValueMemberHelper',
  885. 'VariableHeightLayoutCache', 'Vector', 'VerifyError',
  886. 'VersionSpecHelper', 'VetoableChangeListener',
  887. 'VetoableChangeSupport', 'View', 'ViewFactory',
  888. 'ViewportLayout', 'ViewportUI',
  889. 'VirtualMachineError', 'Visibility',
  890. 'VisibilityHelper', 'VMID', 'VM_ABSTRACT',
  891. 'VM_CUSTOM', 'VM_NONE', 'VM_TRUNCATABLE',
  892. 'VoiceStatus', 'Void', 'WCharSeqHelper',
  893. 'WCharSeqHolder', 'WeakHashMap', 'WeakReference',
  894. 'Window', 'WindowAdapter', 'WindowConstants',
  895. 'WindowEvent', 'WindowListener', 'WrappedPlainView',
  896. 'WritableRaster', 'WritableRenderedImage',
  897. 'WriteAbortedException', 'Writer',
  898. 'WrongTransaction', 'WStringValueHelper',
  899. 'X509Certificate', 'X509CRL', 'X509CRLEntry',
  900. 'X509EncodedKeySpec', 'X509Extension', 'ZipEntry',
  901. 'ZipException', 'ZipFile', 'ZipInputStream',
  902. 'ZipOutputStream', 'ZoneView',
  903. '_BindingIteratorImplBase', '_BindingIteratorStub',
  904. '_IDLTypeStub', '_NamingContextImplBase',
  905. '_NamingContextStub', '_PolicyStub', '_Remote_Stub'
  906. ),
  907. 4 => array(
  908. 'void', 'double', 'int', 'boolean', 'byte', 'short', 'long', 'char', 'float'
  909. )
  910. ),
  911. 'SYMBOLS' => array(
  912. '(', ')', '[', ']', '{', '}',
  913. '+', '-', '*', '/', '%',
  914. '!', '&', '|', '^',
  915. '<', '>', '=',
  916. '?', ':', ';',
  917. ),
  918. 'CASE_SENSITIVE' => array(
  919. GESHI_COMMENTS => false,
  920. 1 => false,
  921. 2 => false,
  922. 3 => true,
  923. 4 => true
  924. ),
  925. 'STYLES' => array(
  926. 'KEYWORDS' => array(
  927. 1 => 'color: #000000; font-weight: bold;',
  928. 2 => 'color: #000066; font-weight: bold;',
  929. 3 => 'color: #003399;',
  930. 4 => 'color: #000066; font-weight: bold;'
  931. ),
  932. 'COMMENTS' => array(
  933. 1 => 'color: #666666; font-style: italic;',
  934. 2 => 'color: #006699;',
  935. 3 => 'color: #008000; font-style: italic; font-weight: bold;',
  936. 3 => 'color: #008000; font-style: italic; font-weight: bold;',
  937. 'MULTI' => 'color: #666666; font-style: italic;'
  938. ),
  939. 'ESCAPE_CHAR' => array(
  940. 0 => 'color: #000099; font-weight: bold;'
  941. ),
  942. 'BRACKETS' => array(
  943. 0 => 'color: #009900;'
  944. ),
  945. 'STRINGS' => array(
  946. 0 => 'color: #0000ff;'
  947. ),
  948. 'NUMBERS' => array(
  949. 0 => 'color: #cc66cc;'
  950. ),
  951. 'METHODS' => array(
  952. 1 => 'color: #006633;',
  953. 2 => 'color: #006633;'
  954. ),
  955. 'SYMBOLS' => array(
  956. 0 => 'color: #339933;'
  957. ),
  958. 'SCRIPT' => array(
  959. ),
  960. 'REGEXPS' => array(
  961. )
  962. ),
  963. 'URLS' => array(
  964. 1 => '',
  965. 2 => '',
  966. 3 => 'http://www.google.com/search?hl=en&amp;q=allinurl%3Adocs.oracle.com+javase+docs+api+{FNAMEL}',
  967. 4 => ''
  968. ),
  969. 'OOLANG' => true,
  970. 'OBJECT_SPLITTERS' => array(
  971. 1 => '.'
  972. ),
  973. 'REGEXPS' => array(
  974. ),
  975. 'STRICT_MODE_APPLIES' => GESHI_NEVER,
  976. 'SCRIPT_DELIMITERS' => array(
  977. ),
  978. 'HIGHLIGHT_STRICT_BLOCK' => array(
  979. )
  980. );
  981. ?>