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