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