root/trunk/lib/geshi/java.php

Revision 2, 42.1 kB (checked in by fabien, 6 years ago)

initial import

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