plugins/geshi/geshi/groovy.php
changeset 0 441963e5b07a
child 2 9e3258dfae15
equal deleted inserted replaced
-1:000000000000 0:441963e5b07a
       
     1 <?php
       
     2 /*************************************************************************************
       
     3  * groovy.php
       
     4  * ----------
       
     5  * Author: Ivan F. Villanueva B. (geshi_groovy@artificialidea.com)
       
     6  * Copyright: (c) 2006 Ivan F. Villanueva B.(http://www.artificialidea.com)
       
     7  * Release Version: 1.0.7.20
       
     8  * Date Started: 2006/04/29
       
     9  *
       
    10  * Groovy language file for GeSHi.
       
    11  *
       
    12  * Keywords from http: http://docs.codehaus.org/download/attachments/2715/groovy-reference-card.pdf?version=1
       
    13  *
       
    14  * CHANGES
       
    15  * -------
       
    16  * 2006/04/29 (1.0.0)
       
    17  *   -  First Release
       
    18  *
       
    19  * TODO (updated 2006/04/29)
       
    20  * -------------------------
       
    21  * Testing
       
    22  *
       
    23  *************************************************************************************
       
    24  *
       
    25  *     This file is part of GeSHi.
       
    26  *
       
    27  *   GeSHi is free software; you can redistribute it and/or modify
       
    28  *   it under the terms of the GNU General Public License as published by
       
    29  *   the Free Software Foundation; either version 2 of the License, or
       
    30  *   (at your option) any later version.
       
    31  *
       
    32  *   GeSHi is distributed in the hope that it will be useful,
       
    33  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    34  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    35  *   GNU General Public License for more details.
       
    36  *
       
    37  *   You should have received a copy of the GNU General Public License
       
    38  *   along with GeSHi; if not, write to the Free Software
       
    39  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
       
    40  *
       
    41  ************************************************************************************/
       
    42 
       
    43 $language_data = array (
       
    44 	'LANG_NAME' => 'Groovy',
       
    45 	'COMMENT_SINGLE' => array(1 => '//', 2 => 'import', 3 => '#'),
       
    46 	'COMMENT_MULTI' => array('/*' => '*/'),
       
    47 	'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
       
    48 	'QUOTEMARKS' => array("'''", '"""', "'", '"'),
       
    49 	'ESCAPE_CHAR' => '\\',
       
    50 	'KEYWORDS' => array(
       
    51 		1 => array(
       
    52 			'||',
       
    53 			'while',
       
    54 			'switch',
       
    55 			'in',
       
    56 			'if',
       
    57 			'foreach',
       
    58 			'for',
       
    59 			'else',
       
    60 			'do',
       
    61 			'case',
       
    62 			'=&gt;',
       
    63 			'--',
       
    64 			'++',
       
    65 			'&lt;&lt;',
       
    66 			'&lt;&lt;&lt;',
       
    67 			'&&'
       
    68 			),
       
    69 		2 => array(
       
    70 			'volatile',
       
    71 			'try',
       
    72 			'true',
       
    73 			'transient',
       
    74 			'throws',
       
    75 			'throw',
       
    76 			'this',
       
    77 			'synchronized',
       
    78 			'super',
       
    79 			'strictfp',
       
    80 			'static',
       
    81 			'return',
       
    82 			'public',
       
    83 			'protected',
       
    84 			'property',
       
    85 			'private',
       
    86 			'package',
       
    87 			'null',
       
    88 			'new',
       
    89 			'native',
       
    90 			'interface',
       
    91 			'instanceof',
       
    92 			'implements',
       
    93 			'goto',
       
    94 			'finally',
       
    95 			'final',
       
    96 			'false',
       
    97 			'extends',
       
    98 			'enum',
       
    99 			'default',
       
   100 			'def',
       
   101 			'continue',
       
   102 			'const',
       
   103 			'class',
       
   104 			'catch',
       
   105 			'break',
       
   106 			'assert',
       
   107 			'abstract',
       
   108 			'as'
       
   109 			),
       
   110 		3 => array(
       
   111 			'_Remote_Stub',
       
   112 			'_PolicyStub',
       
   113 			'_NamingContextStub',
       
   114 			'_NamingContextImplBase',
       
   115 			'_IDLTypeStub',
       
   116 			'_BindingIteratorStub',
       
   117 			'_BindingIteratorImplBase',
       
   118 			'ZoneView',
       
   119 			'ZipOutputStream',
       
   120 			'ZipInputStream',
       
   121 			'ZipFile',
       
   122 			'ZipException',
       
   123 			'ZipEntry',
       
   124 			'X509Extension',
       
   125 			'X509EncodedKeySpec',
       
   126 			'X509Certificate',
       
   127 			'X509CRLEntry',
       
   128 			'X509CRL',
       
   129 			'WrongTransaction',
       
   130 			'Writer',
       
   131 			'WriteAbortedException',
       
   132 			'WritableRenderedImage',
       
   133 			'WritableRaster',
       
   134 			'WrappedPlainView',
       
   135 			'WindowListener',
       
   136 			'WindowEvent',
       
   137 			'WindowConstants',
       
   138 			'WindowAdapter',
       
   139 			'Window',
       
   140 			'WeakReference',
       
   141 			'WeakHashMap',
       
   142 			'WStringValueHelper',
       
   143 			'WCharSeqHolder',
       
   144 			'WCharSeqHelper',
       
   145 			'Void',
       
   146 			'VoiceStatus',
       
   147 			'VisibilityHelper',
       
   148 			'Visibility',
       
   149 			'VirtualMachineError',
       
   150 			'ViewportUI',
       
   151 			'ViewportLayout',
       
   152 			'ViewFactory',
       
   153 			'View',
       
   154 			'VetoableChangeSupport',
       
   155 			'VetoableChangeListener',
       
   156 			'VersionSpecHelper',
       
   157 			'VerifyError',
       
   158 			'Vector',
       
   159 			'VariableHeightLayoutCache',
       
   160 			'ValueMemberHelper',
       
   161 			'ValueMember',
       
   162 			'ValueHandler',
       
   163 			'ValueFactory',
       
   164 			'ValueBaseHolder',
       
   165 			'ValueBaseHelper',
       
   166 			'ValueBase',
       
   167 			'VM_TRUNCATABLE',
       
   168 			'VM_NONE',
       
   169 			'VM_CUSTOM',
       
   170 			'VM_ABSTRACT',
       
   171 			'VMID',
       
   172 			'Utilities',
       
   173 			'UtilDelegate',
       
   174 			'Util',
       
   175 			'UserException',
       
   176 			'UnsupportedOperationException',
       
   177 			'UnsupportedLookAndFeelException',
       
   178 			'UnsupportedFlavorException',
       
   179 			'UnsupportedEncodingException',
       
   180 			'UnsupportedClassVersionError',
       
   181 			'UnsupportedAudioFileException',
       
   182 			'UnsolicitedNotificationListener',
       
   183 			'UnsolicitedNotificationEvent',
       
   184 			'UnsolicitedNotification',
       
   185 			'UnsatisfiedLinkError',
       
   186 			'UnresolvedPermission',
       
   187 			'Unreferenced',
       
   188 			'UnrecoverableKeyException',
       
   189 			'UnmarshalException',
       
   190 			'UnknownUserException',
       
   191 			'UnknownServiceException',
       
   192 			'UnknownObjectException',
       
   193 			'UnknownHostException',
       
   194 			'UnknownHostException',
       
   195 			'UnknownGroupException',
       
   196 			'UnknownException',
       
   197 			'UnknownError',
       
   198 			'UnionMemberHelper',
       
   199 			'UnionMember',
       
   200 			'UnicastRemoteObject',
       
   201 			'UnexpectedException',
       
   202 			'UndoableEditSupport',
       
   203 			'UndoableEditListener',
       
   204 			'UndoableEditEvent',
       
   205 			'UndoableEdit',
       
   206 			'UndoManager',
       
   207 			'UndeclaredThrowableException',
       
   208 			'UTFDataFormatException',
       
   209 			'UShortSeqHolder',
       
   210 			'UShortSeqHelper',
       
   211 			'URLStreamHandlerFactory',
       
   212 			'URLStreamHandler',
       
   213 			'URLEncoder',
       
   214 			'URLDecoder',
       
   215 			'URLConnection',
       
   216 			'URLClassLoader',
       
   217 			'URL',
       
   218 			'UNSUPPORTED_POLICY_VALUE',
       
   219 			'UNSUPPORTED_POLICY',
       
   220 			'UNKNOWN',
       
   221 			'ULongSeqHolder',
       
   222 			'ULongSeqHelper',
       
   223 			'ULongLongSeqHolder',
       
   224 			'ULongLongSeqHelper',
       
   225 			'UIResource',
       
   226 			'UIManager.LookAndFeelInfo',
       
   227 			'UIManager',
       
   228 			'UIDefaults.ProxyLazyValue',
       
   229 			'UIDefaults.LazyValue',
       
   230 			'UIDefaults.LazyInputMap',
       
   231 			'UIDefaults.ActiveValue',
       
   232 			'UIDefaults',
       
   233 			'UID',
       
   234 			'Types',
       
   235 			'TypeMismatch',
       
   236 			'TypeCodeHolder',
       
   237 			'TypeCode',
       
   238 			'TreeWillExpandListener',
       
   239 			'TreeUI',
       
   240 			'TreeSet',
       
   241 			'TreeSelectionModel',
       
   242 			'TreeSelectionListener',
       
   243 			'TreeSelectionEvent',
       
   244 			'TreePath',
       
   245 			'TreeNode',
       
   246 			'TreeModelListener',
       
   247 			'TreeModelEvent',
       
   248 			'TreeModel',
       
   249 			'TreeMap',
       
   250 			'TreeExpansionListener',
       
   251 			'TreeExpansionEvent',
       
   252 			'TreeCellRenderer',
       
   253 			'TreeCellEditor',
       
   254 			'Transparency',
       
   255 			'Transmitter',
       
   256 			'TransformAttribute',
       
   257 			'Transferable',
       
   258 			'TransactionRolledbackException',
       
   259 			'TransactionRequiredException',
       
   260 			'Track',
       
   261 			'Toolkit',
       
   262 			'ToolTipUI',
       
   263 			'ToolTipManager',
       
   264 			'ToolBarUI',
       
   265 			'TooManyListenersException',
       
   266 			'TitledBorder',
       
   267 			'Timestamp',
       
   268 			'TimerTask',
       
   269 			'Timer',
       
   270 			'Timer',
       
   271 			'TimeZone',
       
   272 			'TimeLimitExceededException',
       
   273 			'Time',
       
   274 			'TileObserver',
       
   275 			'Tie',
       
   276 			'Throwable',
       
   277 			'ThreadLocal',
       
   278 			'ThreadGroup',
       
   279 			'ThreadDeath',
       
   280 			'Thread',
       
   281 			'TexturePaint',
       
   282 			'TextUI',
       
   283 			'TextMeasurer',
       
   284 			'TextListener',
       
   285 			'TextLayout.CaretPolicy',
       
   286 			'TextLayout',
       
   287 			'TextHitInfo',
       
   288 			'TextField',
       
   289 			'TextEvent',
       
   290 			'TextComponent',
       
   291 			'TextAttribute',
       
   292 			'TextArea',
       
   293 			'TextAction',
       
   294 			'TargetDataLine',
       
   295 			'TagElement',
       
   296 			'TableView',
       
   297 			'TableUI',
       
   298 			'TableModelListener',
       
   299 			'TableModelEvent',
       
   300 			'TableModel',
       
   301 			'TableHeaderUI',
       
   302 			'TableColumnModelListener',
       
   303 			'TableColumnModelEvent',
       
   304 			'TableColumnModel',
       
   305 			'TableColumn',
       
   306 			'TableCellRenderer',
       
   307 			'TableCellEditor',
       
   308 			'TabbedPaneUI',
       
   309 			'TabableView',
       
   310 			'TabStop',
       
   311 			'TabSet',
       
   312 			'TabExpander',
       
   313 			'TRANSIENT',
       
   314 			'TRANSACTION_ROLLEDBACK',
       
   315 			'TRANSACTION_REQUIRED',
       
   316 			'TCKind',
       
   317 			'SystemFlavorMap',
       
   318 			'SystemException',
       
   319 			'SystemColor',
       
   320 			'System',
       
   321 			'SysexMessage',
       
   322 			'Synthesizer',
       
   323 			'SyncFailedException',
       
   324 			'SwingUtilities',
       
   325 			'SwingPropertyChangeSupport',
       
   326 			'SwingConstants',
       
   327 			'StyledEditorKit.UnderlineAction',
       
   328 			'StyledEditorKit.StyledTextAction',
       
   329 			'StyledEditorKit.ItalicAction',
       
   330 			'StyledEditorKit.ForegroundAction',
       
   331 			'StyledEditorKit.FontSizeAction',
       
   332 			'StyledEditorKit.FontFamilyAction',
       
   333 			'StyledEditorKit.BoldAction',
       
   334 			'StyledEditorKit.AlignmentAction',
       
   335 			'StyledEditorKit',
       
   336 			'StyledDocument',
       
   337 			'StyleSheet.ListPainter',
       
   338 			'StyleSheet.BoxPainter',
       
   339 			'StyleSheet',
       
   340 			'StyleContext',
       
   341 			'StyleConstants.ParagraphConstants',
       
   342 			'StyleConstants.FontConstants',
       
   343 			'StyleConstants.ColorConstants',
       
   344 			'StyleConstants.CharacterConstants',
       
   345 			'StyleConstants',
       
   346 			'Style',
       
   347 			'StubNotFoundException',
       
   348 			'StubDelegate',
       
   349 			'Stub',
       
   350 			'StructMemberHelper',
       
   351 			'StructMember',
       
   352 			'Struct',
       
   353 			'Stroke',
       
   354 			'StringWriter',
       
   355 			'StringValueHelper',
       
   356 			'StringTokenizer',
       
   357 			'StringSelection',
       
   358 			'StringRefAddr',
       
   359 			'StringReader',
       
   360 			'StringIndexOutOfBoundsException',
       
   361 			'StringHolder',
       
   362 			'StringContent',
       
   363 			'StringCharacterIterator',
       
   364 			'StringBufferInputStream',
       
   365 			'StringBuffer',
       
   366 			'String',
       
   367 			'StrictMath',
       
   368 			'StreamableValue',
       
   369 			'Streamable',
       
   370 			'StreamTokenizer',
       
   371 			'StreamCorruptedException',
       
   372 			'Statement',
       
   373 			'StateFactory',
       
   374 			'StateEditable',
       
   375 			'StateEdit',
       
   376 			'StackOverflowError',
       
   377 			'Stack',
       
   378 			'SplitPaneUI',
       
   379 			'SourceDataLine',
       
   380 			'SoundbankResource',
       
   381 			'SoundbankReader',
       
   382 			'Soundbank',
       
   383 			'SortedSet',
       
   384 			'SortedMap',
       
   385 			'SoftReference',
       
   386 			'SoftBevelBorder',
       
   387 			'SocketSecurityException',
       
   388 			'SocketPermission',
       
   389 			'SocketOptions',
       
   390 			'SocketImplFactory',
       
   391 			'SocketImpl',
       
   392 			'SocketException',
       
   393 			'Socket',
       
   394 			'SliderUI',
       
   395 			'SkeletonNotFoundException',
       
   396 			'SkeletonMismatchException',
       
   397 			'Skeleton',
       
   398 			'SizeSequence',
       
   399 			'SizeRequirements',
       
   400 			'SizeLimitExceededException',
       
   401 			'SingleSelectionModel',
       
   402 			'SinglePixelPackedSampleModel',
       
   403 			'SimpleTimeZone',
       
   404 			'SimpleDateFormat',
       
   405 			'SimpleBeanInfo',
       
   406 			'SimpleAttributeSet',
       
   407 			'Signer',
       
   408 			'SignedObject',
       
   409 			'SignatureSpi',
       
   410 			'SignatureException',
       
   411 			'Signature',
       
   412 			'ShortSeqHolder',
       
   413 			'ShortSeqHelper',
       
   414 			'ShortMessage',
       
   415 			'ShortLookupTable',
       
   416 			'ShortHolder',
       
   417 			'Short',
       
   418 			'ShapeGraphicAttribute',
       
   419 			'Shape',
       
   420 			'SetOverrideTypeHelper',
       
   421 			'SetOverrideType',
       
   422 			'Set',
       
   423 			'ServiceUnavailableException',
       
   424 			'ServiceInformationHolder',
       
   425 			'ServiceInformationHelper',
       
   426 			'ServiceInformation',
       
   427 			'ServiceDetailHelper',
       
   428 			'ServiceDetail',
       
   429 			'ServerSocket',
       
   430 			'ServerRuntimeException',
       
   431 			'ServerRequest',
       
   432 			'ServerRef',
       
   433 			'ServerNotActiveException',
       
   434 			'ServerException',
       
   435 			'ServerError',
       
   436 			'ServerCloneException',
       
   437 			'ServantObject',
       
   438 			'SerializablePermission',
       
   439 			'Serializable',
       
   440 			'Sequencer.SyncMode',
       
   441 			'Sequencer',
       
   442 			'SequenceInputStream',
       
   443 			'Sequence',
       
   444 			'SeparatorUI',
       
   445 			'Segment',
       
   446 			'SecurityPermission',
       
   447 			'SecurityManager',
       
   448 			'SecurityException',
       
   449 			'Security',
       
   450 			'SecureRandomSpi',
       
   451 			'SecureRandom',
       
   452 			'SecureClassLoader',
       
   453 			'SearchResult',
       
   454 			'SearchControls',
       
   455 			'Scrollbar',
       
   456 			'Scrollable',
       
   457 			'ScrollPaneUI',
       
   458 			'ScrollPaneLayout.UIResource',
       
   459 			'ScrollPaneLayout',
       
   460 			'ScrollPaneConstants',
       
   461 			'ScrollPane',
       
   462 			'ScrollBarUI',
       
   463 			'SchemaViolationException',
       
   464 			'SampleModel',
       
   465 			'SQLWarning',
       
   466 			'SQLPermission',
       
   467 			'SQLOutput',
       
   468 			'SQLInput',
       
   469 			'SQLException',
       
   470 			'SQLData',
       
   471 			'RuntimePermission',
       
   472 			'RuntimeException',
       
   473 			'Runtime',
       
   474 			'Runnable',
       
   475 			'RunTimeOperations',
       
   476 			'RunTime',
       
   477 			'RuleBasedCollator',
       
   478 			'RowMapper',
       
   479 			'RoundRectangle2D.Float',
       
   480 			'RoundRectangle2D.Double',
       
   481 			'RoundRectangle2D',
       
   482 			'RootPaneUI',
       
   483 			'RootPaneContainer',
       
   484 			'Robot',
       
   485 			'ReverbType',
       
   486 			'ResultSetMetaData',
       
   487 			'ResultSet',
       
   488 			'ResponseHandler',
       
   489 			'ResourceBundle',
       
   490 			'Resolver',
       
   491 			'ResolveResult',
       
   492 			'RescaleOp',
       
   493 			'Request',
       
   494 			'RepositoryIdHelper',
       
   495 			'Repository',
       
   496 			'ReplicateScaleFilter',
       
   497 			'RepaintManager',
       
   498 			'RenderingHints.Key',
       
   499 			'RenderingHints',
       
   500 			'Renderer',
       
   501 			'RenderedImageFactory',
       
   502 			'RenderedImage',
       
   503 			'RenderableImageProducer',
       
   504 			'RenderableImageOp',
       
   505 			'RenderableImage',
       
   506 			'RenderContext',
       
   507 			'RemoteStub',
       
   508 			'RemoteServer',
       
   509 			'RemoteRef',
       
   510 			'RemoteObject',
       
   511 			'RemoteException',
       
   512 			'RemoteCall',
       
   513 			'Remote',
       
   514 			'RemarshalException',
       
   515 			'RegistryHandler',
       
   516 			'Registry',
       
   517 			'ReflectPermission',
       
   518 			'ReferralException',
       
   519 			'Referenceable',
       
   520 			'ReferenceQueue',
       
   521 			'Reference',
       
   522 			'RefAddr',
       
   523 			'Ref',
       
   524 			'RectangularShape',
       
   525 			'Rectangle2D.Float',
       
   526 			'Rectangle2D.Double',
       
   527 			'Rectangle2D',
       
   528 			'Rectangle',
       
   529 			'Receiver',
       
   530 			'Reader',
       
   531 			'RasterOp',
       
   532 			'RasterFormatException',
       
   533 			'Raster',
       
   534 			'RandomAccessFile',
       
   535 			'Random',
       
   536 			'RTFEditorKit',
       
   537 			'RSAPublicKeySpec',
       
   538 			'RSAPublicKey',
       
   539 			'RSAPrivateKeySpec',
       
   540 			'RSAPrivateKey',
       
   541 			'RSAPrivateCrtKeySpec',
       
   542 			'RSAPrivateCrtKey',
       
   543 			'RSAKeyGenParameterSpec',
       
   544 			'RSAKey',
       
   545 			'RMISocketFactory',
       
   546 			'RMIServerSocketFactory',
       
   547 			'RMISecurityManager',
       
   548 			'RMISecurityException',
       
   549 			'RMIFailureHandler',
       
   550 			'RMIClientSocketFactory',
       
   551 			'RMIClassLoader',
       
   552 			'RGBImageFilter',
       
   553 			'QuadCurve2D.Float',
       
   554 			'QuadCurve2D.Double',
       
   555 			'QuadCurve2D',
       
   556 			'PushbackReader',
       
   557 			'PushbackInputStream',
       
   558 			'PublicKey',
       
   559 			'Proxy',
       
   560 			'ProviderException',
       
   561 			'Provider',
       
   562 			'ProtocolException',
       
   563 			'ProtectionDomain',
       
   564 			'PropertyVetoException',
       
   565 			'PropertyResourceBundle',
       
   566 			'PropertyPermission',
       
   567 			'PropertyEditorSupport',
       
   568 			'PropertyEditorManager',
       
   569 			'PropertyEditor',
       
   570 			'PropertyDescriptor',
       
   571 			'PropertyChangeSupport',
       
   572 			'PropertyChangeListener',
       
   573 			'PropertyChangeEvent',
       
   574 			'Properties',
       
   575 			'ProgressMonitorInputStream',
       
   576 			'ProgressMonitor',
       
   577 			'ProgressBarUI',
       
   578 			'ProfileDataException',
       
   579 			'Process',
       
   580 			'PrivilegedExceptionAction',
       
   581 			'PrivilegedActionException',
       
   582 			'PrivilegedAction',
       
   583 			'PrivateKey',
       
   584 			'PrinterJob',
       
   585 			'PrinterIOException',
       
   586 			'PrinterGraphics',
       
   587 			'PrinterException',
       
   588 			'PrinterAbortException',
       
   589 			'Printable',
       
   590 			'PrintWriter',
       
   591 			'PrintStream',
       
   592 			'PrintJob',
       
   593 			'PrintGraphics',
       
   594 			'PrincipalHolder',
       
   595 			'Principal',
       
   596 			'Principal',
       
   597 			'PreparedStatement',
       
   598 			'Position.Bias',
       
   599 			'Position',
       
   600 			'PortableRemoteObjectDelegate',
       
   601 			'PortableRemoteObject',
       
   602 			'Port.Info',
       
   603 			'Port',
       
   604 			'PopupMenuUI',
       
   605 			'PopupMenuListener',
       
   606 			'PopupMenuEvent',
       
   607 			'PopupMenu',
       
   608 			'Polygon',
       
   609 			'PolicyTypeHelper',
       
   610 			'PolicyOperations',
       
   611 			'PolicyListHolder',
       
   612 			'PolicyListHelper',
       
   613 			'PolicyHolder',
       
   614 			'PolicyHelper',
       
   615 			'PolicyError',
       
   616 			'Policy',
       
   617 			'Policy',
       
   618 			'Point2D.Float',
       
   619 			'Point2D.Double',
       
   620 			'Point2D',
       
   621 			'Point',
       
   622 			'PlainView',
       
   623 			'PlainDocument',
       
   624 			'PixelInterleavedSampleModel',
       
   625 			'PixelGrabber',
       
   626 			'PipedWriter',
       
   627 			'PipedReader',
       
   628 			'PipedOutputStream',
       
   629 			'PipedInputStream',
       
   630 			'PhantomReference',
       
   631 			'Permissions',
       
   632 			'PermissionCollection',
       
   633 			'Permission',
       
   634 			'Permission',
       
   635 			'PathIterator',
       
   636 			'Patch',
       
   637 			'PasswordView',
       
   638 			'PasswordAuthentication',
       
   639 			'PartialResultException',
       
   640 			'ParserDelegator',
       
   641 			'Parser',
       
   642 			'ParsePosition',
       
   643 			'ParseException',
       
   644 			'ParameterDescriptor',
       
   645 			'ParameterBlock',
       
   646 			'ParagraphView',
       
   647 			'ParagraphView',
       
   648 			'Paper',
       
   649 			'PanelUI',
       
   650 			'Panel',
       
   651 			'PaintEvent',
       
   652 			'PaintContext',
       
   653 			'Paint',
       
   654 			'Pageable',
       
   655 			'PageFormat',
       
   656 			'PageAttributes.PrintQualityType',
       
   657 			'PageAttributes.OriginType',
       
   658 			'PageAttributes.OrientationRequestedType',
       
   659 			'PageAttributes.MediaType',
       
   660 			'PageAttributes.ColorType',
       
   661 			'PageAttributes',
       
   662 			'PackedColorModel',
       
   663 			'Package',
       
   664 			'PUBLIC_MEMBER',
       
   665 			'PRIVATE_MEMBER',
       
   666 			'PKCS8EncodedKeySpec',
       
   667 			'PERSIST_STORE',
       
   668 			'Owner',
       
   669 			'OverlayLayout',
       
   670 			'OutputStreamWriter',
       
   671 			'OutputStream',
       
   672 			'OutOfMemoryError',
       
   673 			'OptionalDataException',
       
   674 			'OptionPaneUI',
       
   675 			'Option',
       
   676 			'OperationNotSupportedException',
       
   677 			'Operation',
       
   678 			'OpenType',
       
   679 			'OctetSeqHolder',
       
   680 			'OctetSeqHelper',
       
   681 			'Observer',
       
   682 			'Observable',
       
   683 			'ObjectView',
       
   684 			'ObjectStreamField',
       
   685 			'ObjectStreamException',
       
   686 			'ObjectStreamConstants',
       
   687 			'ObjectStreamClass',
       
   688 			'ObjectOutputStream.PutField',
       
   689 			'ObjectOutputStream',
       
   690 			'ObjectOutput',
       
   691 			'ObjectInputValidation',
       
   692 			'ObjectInputStream.GetField',
       
   693 			'ObjectInputStream',
       
   694 			'ObjectInput',
       
   695 			'ObjectImpl',
       
   696 			'ObjectImpl',
       
   697 			'ObjectHolder',
       
   698 			'ObjectHelper',
       
   699 			'ObjectFactoryBuilder',
       
   700 			'ObjectFactory',
       
   701 			'ObjectChangeListener',
       
   702 			'Object',
       
   703 			'ObjID',
       
   704 			'ORB',
       
   705 			'OMGVMCID',
       
   706 			'OBJ_ADAPTER',
       
   707 			'OBJECT_NOT_EXIST',
       
   708 			'NumberFormatException',
       
   709 			'NumberFormat',
       
   710 			'Number',
       
   711 			'NullPointerException',
       
   712 			'NotSerializableException',
       
   713 			'NotOwnerException',
       
   714 			'NotFoundReasonHolder',
       
   715 			'NotFoundReasonHelper',
       
   716 			'NotFoundReason',
       
   717 			'NotFoundHolder',
       
   718 			'NotFoundHelper',
       
   719 			'NotFound',
       
   720 			'NotEmptyHolder',
       
   721 			'NotEmptyHelper',
       
   722 			'NotEmpty',
       
   723 			'NotContextException',
       
   724 			'NotBoundException',
       
   725 			'NotActiveException',
       
   726 			'NoninvertibleTransformException',
       
   727 			'NoSuchProviderException',
       
   728 			'NoSuchObjectException',
       
   729 			'NoSuchMethodException',
       
   730 			'NoSuchMethodError',
       
   731 			'NoSuchFieldException',
       
   732 			'NoSuchFieldError',
       
   733 			'NoSuchElementException',
       
   734 			'NoSuchAttributeException',
       
   735 			'NoSuchAlgorithmException',
       
   736 			'NoRouteToHostException',
       
   737 			'NoPermissionException',
       
   738 			'NoInitialContextException',
       
   739 			'NoClassDefFoundError',
       
   740 			'NetPermission',
       
   741 			'NegativeArraySizeException',
       
   742 			'NamingSecurityException',
       
   743 			'NamingManager',
       
   744 			'NamingListener',
       
   745 			'NamingExceptionEvent',
       
   746 			'NamingException',
       
   747 			'NamingEvent',
       
   748 			'NamingEnumeration',
       
   749 			'NamingContextOperations',
       
   750 			'NamingContextHolder',
       
   751 			'NamingContextHelper',
       
   752 			'NamingContext',
       
   753 			'Naming',
       
   754 			'NamespaceChangeListener',
       
   755 			'NamedValue',
       
   756 			'NameValuePairHelper',
       
   757 			'NameValuePair',
       
   758 			'NameParser',
       
   759 			'NameNotFoundException',
       
   760 			'NameHolder',
       
   761 			'NameHelper',
       
   762 			'NameComponentHolder',
       
   763 			'NameComponentHelper',
       
   764 			'NameComponent',
       
   765 			'NameClassPair',
       
   766 			'NameAlreadyBoundException',
       
   767 			'Name',
       
   768 			'NVList',
       
   769 			'NO_RESPONSE',
       
   770 			'NO_RESOURCES',
       
   771 			'NO_PERMISSION',
       
   772 			'NO_MEMORY',
       
   773 			'NO_IMPLEMENT',
       
   774 			'MutableTreeNode',
       
   775 			'MutableComboBoxModel',
       
   776 			'MutableAttributeSet',
       
   777 			'MultipleMaster',
       
   778 			'MulticastSocket',
       
   779 			'MultiViewportUI',
       
   780 			'MultiTreeUI',
       
   781 			'MultiToolTipUI',
       
   782 			'MultiToolBarUI',
       
   783 			'MultiTextUI',
       
   784 			'MultiTableUI',
       
   785 			'MultiTableHeaderUI',
       
   786 			'MultiTabbedPaneUI',
       
   787 			'MultiSplitPaneUI',
       
   788 			'MultiSliderUI',
       
   789 			'MultiSeparatorUI',
       
   790 			'MultiScrollPaneUI',
       
   791 			'MultiScrollBarUI',
       
   792 			'MultiProgressBarUI',
       
   793 			'MultiPopupMenuUI',
       
   794 			'MultiPixelPackedSampleModel',
       
   795 			'MultiPanelUI',
       
   796 			'MultiOptionPaneUI',
       
   797 			'MultiMenuItemUI',
       
   798 			'MultiMenuBarUI',
       
   799 			'MultiLookAndFeel',
       
   800 			'MultiListUI',
       
   801 			'MultiLabelUI',
       
   802 			'MultiInternalFrameUI',
       
   803 			'MultiFileChooserUI',
       
   804 			'MultiDesktopPaneUI',
       
   805 			'MultiDesktopIconUI',
       
   806 			'MultiComboBoxUI',
       
   807 			'MultiColorChooserUI',
       
   808 			'MultiButtonUI',
       
   809 			'MouseMotionListener',
       
   810 			'MouseMotionAdapter',
       
   811 			'MouseListener',
       
   812 			'MouseInputListener',
       
   813 			'MouseInputAdapter',
       
   814 			'MouseEvent',
       
   815 			'MouseDragGestureRecognizer',
       
   816 			'MouseAdapter',
       
   817 			'Modifier',
       
   818 			'ModificationItem',
       
   819 			'MixerProvider',
       
   820 			'Mixer.Info',
       
   821 			'Mixer',
       
   822 			'MissingResourceException',
       
   823 			'MinimalHTMLWriter',
       
   824 			'MimeTypeParseException',
       
   825 			'MidiUnavailableException',
       
   826 			'MidiSystem',
       
   827 			'MidiMessage',
       
   828 			'MidiFileWriter',
       
   829 			'MidiFileReader',
       
   830 			'MidiFileFormat',
       
   831 			'MidiEvent',
       
   832 			'MidiDeviceProvider',
       
   833 			'MidiDevice.Info',
       
   834 			'MidiDevice',
       
   835 			'MidiChannel',
       
   836 			'MethodDescriptor',
       
   837 			'Method',
       
   838 			'MetalTreeUI',
       
   839 			'MetalToolTipUI',
       
   840 			'MetalToolBarUI',
       
   841 			'MetalToggleButtonUI',
       
   842 			'MetalTheme',
       
   843 			'MetalTextFieldUI',
       
   844 			'MetalTabbedPaneUI',
       
   845 			'MetalSplitPaneUI',
       
   846 			'MetalSliderUI',
       
   847 			'MetalSeparatorUI',
       
   848 			'MetalScrollPaneUI',
       
   849 			'MetalScrollButton',
       
   850 			'MetalScrollBarUI',
       
   851 			'MetalRadioButtonUI',
       
   852 			'MetalProgressBarUI',
       
   853 			'MetalPopupMenuSeparatorUI',
       
   854 			'MetalLookAndFeel',
       
   855 			'MetalLabelUI',
       
   856 			'MetalInternalFrameUI',
       
   857 			'MetalInternalFrameTitlePane',
       
   858 			'MetalIconFactory.TreeLeafIcon',
       
   859 			'MetalIconFactory.TreeFolderIcon',
       
   860 			'MetalIconFactory.TreeControlIcon',
       
   861 			'MetalIconFactory.PaletteCloseIcon',
       
   862 			'MetalIconFactory.FolderIcon16',
       
   863 			'MetalIconFactory.FileIcon16',
       
   864 			'MetalIconFactory',
       
   865 			'MetalFileChooserUI',
       
   866 			'MetalDesktopIconUI',
       
   867 			'MetalComboBoxUI',
       
   868 			'MetalComboBoxIcon',
       
   869 			'MetalComboBoxEditor.UIResource',
       
   870 			'MetalComboBoxEditor',
       
   871 			'MetalComboBoxButton',
       
   872 			'MetalCheckBoxUI',
       
   873 			'MetalCheckBoxIcon',
       
   874 			'MetalButtonUI',
       
   875 			'MetalBorders.ToolBarBorder',
       
   876 			'MetalBorders.ToggleButtonBorder',
       
   877 			'MetalBorders.TextFieldBorder',
       
   878 			'MetalBorders.TableHeaderBorder',
       
   879 			'MetalBorders.ScrollPaneBorder',
       
   880 			'MetalBorders.RolloverButtonBorder',
       
   881 			'MetalBorders.PopupMenuBorder',
       
   882 			'MetalBorders.PaletteBorder',
       
   883 			'MetalBorders.OptionDialogBorder',
       
   884 			'MetalBorders.MenuItemBorder',
       
   885 			'MetalBorders.MenuBarBorder',
       
   886 			'MetalBorders.InternalFrameBorder',
       
   887 			'MetalBorders.Flush3DBorder',
       
   888 			'MetalBorders.ButtonBorder',
       
   889 			'MetalBorders',
       
   890 			'MetaMessage',
       
   891 			'MetaEventListener',
       
   892 			'MessageFormat',
       
   893 			'MessageDigestSpi',
       
   894 			'MessageDigest',
       
   895 			'MenuShortcut',
       
   896 			'MenuSelectionManager',
       
   897 			'MenuListener',
       
   898 			'MenuKeyListener',
       
   899 			'MenuKeyEvent',
       
   900 			'MenuItemUI',
       
   901 			'MenuItem',
       
   902 			'MenuEvent',
       
   903 			'MenuElement',
       
   904 			'MenuDragMouseListener',
       
   905 			'MenuDragMouseEvent',
       
   906 			'MenuContainer',
       
   907 			'MenuComponent',
       
   908 			'MenuBarUI',
       
   909 			'MenuBar',
       
   910 			'Menu',
       
   911 			'MemoryImageSource',
       
   912 			'Member',
       
   913 			'MediaTracker',
       
   914 			'MatteBorder',
       
   915 			'Math',
       
   916 			'MarshalledObject',
       
   917 			'MarshalException',
       
   918 			'Map.Entry',
       
   919 			'Map',
       
   920 			'Manifest',
       
   921 			'MalformedURLException',
       
   922 			'MalformedLinkException',
       
   923 			'MARSHAL',
       
   924 			'LookupTable',
       
   925 			'LookupOp',
       
   926 			'LookAndFeel',
       
   927 			'LongSeqHolder',
       
   928 			'LongSeqHelper',
       
   929 			'LongLongSeqHolder',
       
   930 			'LongLongSeqHelper',
       
   931 			'LongHolder',
       
   932 			'Long',
       
   933 			'LogStream',
       
   934 			'LocateRegistry',
       
   935 			'Locale',
       
   936 			'LoaderHandler',
       
   937 			'ListView',
       
   938 			'ListUI',
       
   939 			'ListSelectionModel',
       
   940 			'ListSelectionListener',
       
   941 			'ListSelectionEvent',
       
   942 			'ListResourceBundle',
       
   943 			'ListModel',
       
   944 			'ListIterator',
       
   945 			'ListDataListener',
       
   946 			'ListDataEvent',
       
   947 			'ListCellRenderer',
       
   948 			'List',
       
   949 			'List',
       
   950 			'LinkedList',
       
   951 			'LinkageError',
       
   952 			'LinkRef',
       
   953 			'LinkLoopException',
       
   954 			'LinkException',
       
   955 			'LineUnavailableException',
       
   956 			'LineNumberReader',
       
   957 			'LineNumberInputStream',
       
   958 			'LineMetrics',
       
   959 			'LineListener',
       
   960 			'LineEvent.Type',
       
   961 			'LineEvent',
       
   962 			'LineBreakMeasurer',
       
   963 			'LineBorder',
       
   964 			'Line2D.Float',
       
   965 			'Line2D.Double',
       
   966 			'Line2D',
       
   967 			'Line.Info',
       
   968 			'Line',
       
   969 			'LimitExceededException',
       
   970 			'Lease',
       
   971 			'LdapReferralException',
       
   972 			'LdapContext',
       
   973 			'LayoutQueue',
       
   974 			'LayoutManager2',
       
   975 			'LayoutManager',
       
   976 			'LayeredHighlighter.LayerPainter',
       
   977 			'LayeredHighlighter',
       
   978 			'LastOwnerException',
       
   979 			'LabelView',
       
   980 			'LabelUI',
       
   981 			'Label',
       
   982 			'Keymap',
       
   983 			'KeyStroke',
       
   984 			'KeyStoreSpi',
       
   985 			'KeyStoreException',
       
   986 			'KeyStore',
       
   987 			'KeySpec',
       
   988 			'KeyPairGeneratorSpi',
       
   989 			'KeyPairGenerator',
       
   990 			'KeyPair',
       
   991 			'KeyManagementException',
       
   992 			'KeyListener',
       
   993 			'KeyFactorySpi',
       
   994 			'KeyFactory',
       
   995 			'KeyException',
       
   996 			'KeyEvent',
       
   997 			'KeyAdapter',
       
   998 			'Key',
       
   999 			'Kernel',
       
  1000 			'JobAttributes.SidesType',
       
  1001 			'JobAttributes.MultipleDocumentHandlingType',
       
  1002 			'JobAttributes.DialogType',
       
  1003 			'JobAttributes.DestinationType',
       
  1004 			'JobAttributes.DefaultSelectionType',
       
  1005 			'JobAttributes',
       
  1006 			'JarURLConnection',
       
  1007 			'JarOutputStream',
       
  1008 			'JarInputStream',
       
  1009 			'JarFile',
       
  1010 			'JarException',
       
  1011 			'JarEntry',
       
  1012 			'JWindow',
       
  1013 			'JViewport',
       
  1014 			'JTree.EmptySelectionModel',
       
  1015 			'JTree.DynamicUtilTreeNode',
       
  1016 			'JTree',
       
  1017 			'JToolTip',
       
  1018 			'JToolBar.Separator',
       
  1019 			'JToolBar',
       
  1020 			'JToggleButton.ToggleButtonModel',
       
  1021 			'JToggleButton',
       
  1022 			'JTextPane',
       
  1023 			'JTextField',
       
  1024 			'JTextComponent.KeyBinding',
       
  1025 			'JTextComponent',
       
  1026 			'JTextArea',
       
  1027 			'JTableHeader',
       
  1028 			'JTable',
       
  1029 			'JTabbedPane',
       
  1030 			'JSplitPane',
       
  1031 			'JSlider',
       
  1032 			'JSeparator',
       
  1033 			'JScrollPane',
       
  1034 			'JScrollBar',
       
  1035 			'JRootPane',
       
  1036 			'JRadioButtonMenuItem',
       
  1037 			'JRadioButton',
       
  1038 			'JProgressBar',
       
  1039 			'JPopupMenu.Separator',
       
  1040 			'JPopupMenu',
       
  1041 			'JPasswordField',
       
  1042 			'JPanel',
       
  1043 			'JOptionPane',
       
  1044 			'JMenuItem',
       
  1045 			'JMenuBar',
       
  1046 			'JMenu',
       
  1047 			'JList',
       
  1048 			'JLayeredPane',
       
  1049 			'JLabel',
       
  1050 			'JInternalFrame.JDesktopIcon',
       
  1051 			'JInternalFrame',
       
  1052 			'JFrame',
       
  1053 			'JFileChooser',
       
  1054 			'JEditorPane',
       
  1055 			'JDialog',
       
  1056 			'JDesktopPane',
       
  1057 			'JComponent',
       
  1058 			'JComboBox.KeySelectionManager',
       
  1059 			'JComboBox',
       
  1060 			'JColorChooser',
       
  1061 			'JCheckBoxMenuItem',
       
  1062 			'JCheckBox',
       
  1063 			'JButton',
       
  1064 			'JApplet',
       
  1065 			'Iterator',
       
  1066 			'ItemSelectable',
       
  1067 			'ItemListener',
       
  1068 			'ItemEvent',
       
  1069 			'IstringHelper',
       
  1070 			'InvokeHandler',
       
  1071 			'InvocationTargetException',
       
  1072 			'InvocationHandler',
       
  1073 			'InvocationEvent',
       
  1074 			'InvalidValue',
       
  1075 			'InvalidTransactionException',
       
  1076 			'InvalidSeq',
       
  1077 			'InvalidSearchFilterException',
       
  1078 			'InvalidSearchControlsException',
       
  1079 			'InvalidParameterSpecException',
       
  1080 			'InvalidParameterException',
       
  1081 			'InvalidObjectException',
       
  1082 			'InvalidNameHolder',
       
  1083 			'InvalidNameHelper',
       
  1084 			'InvalidNameException',
       
  1085 			'InvalidName',
       
  1086 			'InvalidName',
       
  1087 			'InvalidMidiDataException',
       
  1088 			'InvalidKeySpecException',
       
  1089 			'InvalidKeyException',
       
  1090 			'InvalidDnDOperationException',
       
  1091 			'InvalidClassException',
       
  1092 			'InvalidAttributesException',
       
  1093 			'InvalidAttributeValueException',
       
  1094 			'InvalidAttributeIdentifierException',
       
  1095 			'InvalidAlgorithmParameterException',
       
  1096 			'Invalid',
       
  1097 			'Introspector',
       
  1098 			'IntrospectionException',
       
  1099 			'InterruptedNamingException',
       
  1100 			'InterruptedIOException',
       
  1101 			'InterruptedException',
       
  1102 			'InternalFrameUI',
       
  1103 			'InternalFrameListener',
       
  1104 			'InternalFrameEvent',
       
  1105 			'InternalFrameAdapter',
       
  1106 			'InternalError',
       
  1107 			'Integer',
       
  1108 			'IntHolder',
       
  1109 			'InsufficientResourcesException',
       
  1110 			'Instrument',
       
  1111 			'InstantiationException',
       
  1112 			'InstantiationError',
       
  1113 			'InsetsUIResource',
       
  1114 			'Insets',
       
  1115 			'InputVerifier',
       
  1116 			'InputSubset',
       
  1117 			'InputStreamReader',
       
  1118 			'InputStream',
       
  1119 			'InputStream',
       
  1120 			'InputStream',
       
  1121 			'InputMethodRequests',
       
  1122 			'InputMethodListener',
       
  1123 			'InputMethodHighlight',
       
  1124 			'InputMethodEvent',
       
  1125 			'InputMethodDescriptor',
       
  1126 			'InputMethodContext',
       
  1127 			'InputMethod',
       
  1128 			'InputMapUIResource',
       
  1129 			'InputMap',
       
  1130 			'InputEvent',
       
  1131 			'InputContext',
       
  1132 			'InlineView',
       
  1133 			'Initializer',
       
  1134 			'InitialLdapContext',
       
  1135 			'InitialDirContext',
       
  1136 			'InitialContextFactoryBuilder',
       
  1137 			'InitialContextFactory',
       
  1138 			'InitialContext',
       
  1139 			'InheritableThreadLocal',
       
  1140 			'InflaterInputStream',
       
  1141 			'Inflater',
       
  1142 			'InetAddress',
       
  1143 			'IndirectionException',
       
  1144 			'IndexedPropertyDescriptor',
       
  1145 			'IndexOutOfBoundsException',
       
  1146 			'IndexColorModel',
       
  1147 			'InconsistentTypeCode',
       
  1148 			'IncompatibleClassChangeError',
       
  1149 			'ImagingOpException',
       
  1150 			'ImageProducer',
       
  1151 			'ImageObserver',
       
  1152 			'ImageIcon',
       
  1153 			'ImageGraphicAttribute',
       
  1154 			'ImageFilter',
       
  1155 			'ImageConsumer',
       
  1156 			'Image',
       
  1157 			'IllegalThreadStateException',
       
  1158 			'IllegalStateException',
       
  1159 			'IllegalPathStateException',
       
  1160 			'IllegalMonitorStateException',
       
  1161 			'IllegalComponentStateException',
       
  1162 			'IllegalArgumentException',
       
  1163 			'IllegalAccessException',
       
  1164 			'IllegalAccessError',
       
  1165 			'IdentityScope',
       
  1166 			'Identity',
       
  1167 			'IdentifierHelper',
       
  1168 			'IconView',
       
  1169 			'IconUIResource',
       
  1170 			'Icon',
       
  1171 			'IRObjectOperations',
       
  1172 			'IRObject',
       
  1173 			'IOException',
       
  1174 			'INV_POLICY',
       
  1175 			'INV_OBJREF',
       
  1176 			'INV_IDENT',
       
  1177 			'INV_FLAG',
       
  1178 			'INVALID_TRANSACTION',
       
  1179 			'INTF_REPOS',
       
  1180 			'INTERNAL',
       
  1181 			'INITIALIZE',
       
  1182 			'IMP_LIMIT',
       
  1183 			'IDLTypeOperations',
       
  1184 			'IDLTypeHelper',
       
  1185 			'IDLType',
       
  1186 			'IDLEntity',
       
  1187 			'ICC_ProfileRGB',
       
  1188 			'ICC_ProfileGray',
       
  1189 			'ICC_Profile',
       
  1190 			'ICC_ColorSpace',
       
  1191 			'HyperlinkListener',
       
  1192 			'HyperlinkEvent.EventType',
       
  1193 			'HyperlinkEvent',
       
  1194 			'HttpURLConnection',
       
  1195 			'Highlighter.HighlightPainter',
       
  1196 			'Highlighter.Highlight',
       
  1197 			'Highlighter',
       
  1198 			'HierarchyListener',
       
  1199 			'HierarchyEvent',
       
  1200 			'HierarchyBoundsListener',
       
  1201 			'HierarchyBoundsAdapter',
       
  1202 			'Hashtable',
       
  1203 			'HashSet',
       
  1204 			'HashMap',
       
  1205 			'HasControls',
       
  1206 			'HTMLWriter',
       
  1207 			'HTMLFrameHyperlinkEvent',
       
  1208 			'HTMLEditorKit.ParserCallback',
       
  1209 			'HTMLEditorKit.Parser',
       
  1210 			'HTMLEditorKit.LinkController',
       
  1211 			'HTMLEditorKit.InsertHTMLTextAction',
       
  1212 			'HTMLEditorKit.HTMLTextAction',
       
  1213 			'HTMLEditorKit.HTMLFactory',
       
  1214 			'HTMLEditorKit',
       
  1215 			'HTMLDocument.Iterator',
       
  1216 			'HTMLDocument',
       
  1217 			'HTML.UnknownTag',
       
  1218 			'HTML.Tag',
       
  1219 			'HTML.Attribute',
       
  1220 			'HTML',
       
  1221 			'GuardedObject',
       
  1222 			'Guard',
       
  1223 			'Group',
       
  1224 			'GridLayout',
       
  1225 			'GridBagLayout',
       
  1226 			'GridBagConstraints',
       
  1227 			'GregorianCalendar',
       
  1228 			'GrayFilter',
       
  1229 			'GraphicsEnvironment',
       
  1230 			'GraphicsDevice',
       
  1231 			'GraphicsConfiguration',
       
  1232 			'GraphicsConfigTemplate',
       
  1233 			'Graphics2D',
       
  1234 			'Graphics',
       
  1235 			'GraphicAttribute',
       
  1236 			'GradientPaint',
       
  1237 			'GlyphView.GlyphPainter',
       
  1238 			'GlyphView',
       
  1239 			'GlyphVector',
       
  1240 			'GlyphMetrics',
       
  1241 			'GlyphJustificationInfo',
       
  1242 			'GeneralSecurityException',
       
  1243 			'GeneralPath',
       
  1244 			'GapContent',
       
  1245 			'GZIPOutputStream',
       
  1246 			'GZIPInputStream',
       
  1247 			'Frame',
       
  1248 			'FormatConversionProvider',
       
  1249 			'Format',
       
  1250 			'FormView',
       
  1251 			'FontUIResource',
       
  1252 			'FontRenderContext',
       
  1253 			'FontMetrics',
       
  1254 			'FontFormatException',
       
  1255 			'Font',
       
  1256 			'FocusManager',
       
  1257 			'FocusListener',
       
  1258 			'FocusEvent',
       
  1259 			'FocusAdapter',
       
  1260 			'FlowView.FlowStrategy',
       
  1261 			'FlowView',
       
  1262 			'FlowLayout',
       
  1263 			'FloatSeqHolder',
       
  1264 			'FloatSeqHelper',
       
  1265 			'FloatHolder',
       
  1266 			'FloatControl.Type',
       
  1267 			'FloatControl',
       
  1268 			'Float',
       
  1269 			'FlavorMap',
       
  1270 			'FlatteningPathIterator',
       
  1271 			'FixedHolder',
       
  1272 			'FixedHeightLayoutCache',
       
  1273 			'FilteredImageSource',
       
  1274 			'FilterWriter',
       
  1275 			'FilterReader',
       
  1276 			'FilterOutputStream',
       
  1277 			'FilterInputStream',
       
  1278 			'FilenameFilter',
       
  1279 			'FileWriter',
       
  1280 			'FileView',
       
  1281 			'FileSystemView',
       
  1282 			'FileReader',
       
  1283 			'FilePermission',
       
  1284 			'FileOutputStream',
       
  1285 			'FileNotFoundException',
       
  1286 			'FileNameMap',
       
  1287 			'FileInputStream',
       
  1288 			'FileFilter',
       
  1289 			'FileFilter',
       
  1290 			'FileDialog',
       
  1291 			'FileDescriptor',
       
  1292 			'FileChooserUI',
       
  1293 			'File',
       
  1294 			'FieldView',
       
  1295 			'FieldPosition',
       
  1296 			'FieldNameHelper',
       
  1297 			'Field',
       
  1298 			'FeatureDescriptor',
       
  1299 			'FREE_MEM',
       
  1300 			'Externalizable',
       
  1301 			'ExtendedResponse',
       
  1302 			'ExtendedRequest',
       
  1303 			'ExportException',
       
  1304 			'ExpandVetoException',
       
  1305 			'ExceptionList',
       
  1306 			'ExceptionInInitializerError',
       
  1307 			'Exception',
       
  1308 			'EventSetDescriptor',
       
  1309 			'EventQueue',
       
  1310 			'EventObject',
       
  1311 			'EventListenerList',
       
  1312 			'EventListener',
       
  1313 			'EventDirContext',
       
  1314 			'EventContext',
       
  1315 			'Event',
       
  1316 			'EtchedBorder',
       
  1317 			'Error',
       
  1318 			'Environment',
       
  1319 			'Enumeration',
       
  1320 			'EnumControl.Type',
       
  1321 			'EnumControl',
       
  1322 			'Entity',
       
  1323 			'EncodedKeySpec',
       
  1324 			'EmptyStackException',
       
  1325 			'EmptyBorder',
       
  1326 			'Ellipse2D.Float',
       
  1327 			'Ellipse2D.Double',
       
  1328 			'Ellipse2D',
       
  1329 			'ElementIterator',
       
  1330 			'Element',
       
  1331 			'EditorKit',
       
  1332 			'EOFException',
       
  1333 			'DynamicImplementation',
       
  1334 			'DynValue',
       
  1335 			'DynUnion',
       
  1336 			'DynStruct',
       
  1337 			'DynSequence',
       
  1338 			'DynFixed',
       
  1339 			'DynEnum',
       
  1340 			'DynArray',
       
  1341 			'DynAny',
       
  1342 			'DropTargetListener',
       
  1343 			'DropTargetEvent',
       
  1344 			'DropTargetDropEvent',
       
  1345 			'DropTargetDragEvent',
       
  1346 			'DropTargetContext',
       
  1347 			'DropTarget.DropTargetAutoScroller',
       
  1348 			'DropTarget',
       
  1349 			'DriverPropertyInfo',
       
  1350 			'DriverManager',
       
  1351 			'Driver',
       
  1352 			'DragSourceListener',
       
  1353 			'DragSourceEvent',
       
  1354 			'DragSourceDropEvent',
       
  1355 			'DragSourceDragEvent',
       
  1356 			'DragSourceContext',
       
  1357 			'DragSource',
       
  1358 			'DragGestureRecognizer',
       
  1359 			'DragGestureListener',
       
  1360 			'DragGestureEvent',
       
  1361 			'DoubleSeqHolder',
       
  1362 			'DoubleSeqHelper',
       
  1363 			'DoubleHolder',
       
  1364 			'Double',
       
  1365 			'DomainManagerOperations',
       
  1366 			'DomainManager',
       
  1367 			'DomainCombiner',
       
  1368 			'DocumentParser',
       
  1369 			'DocumentListener',
       
  1370 			'DocumentEvent.EventType',
       
  1371 			'DocumentEvent.ElementChange',
       
  1372 			'DocumentEvent',
       
  1373 			'Document',
       
  1374 			'DnDConstants',
       
  1375 			'DirectoryManager',
       
  1376 			'DirectColorModel',
       
  1377 			'DirStateFactory.Result',
       
  1378 			'DirStateFactory',
       
  1379 			'DirObjectFactory',
       
  1380 			'DirContext',
       
  1381 			'DimensionUIResource',
       
  1382 			'Dimension2D',
       
  1383 			'Dimension',
       
  1384 			'DigestOutputStream',
       
  1385 			'DigestInputStream',
       
  1386 			'DigestException',
       
  1387 			'Dictionary',
       
  1388 			'Dialog',
       
  1389 			'DesktopPaneUI',
       
  1390 			'DesktopManager',
       
  1391 			'DesktopIconUI',
       
  1392 			'DesignMode',
       
  1393 			'Delegate',
       
  1394 			'DeflaterOutputStream',
       
  1395 			'Deflater',
       
  1396 			'DefinitionKindHelper',
       
  1397 			'DefinitionKind',
       
  1398 			'DefaultTreeSelectionModel',
       
  1399 			'DefaultTreeModel',
       
  1400 			'DefaultTreeCellRenderer',
       
  1401 			'DefaultTreeCellEditor',
       
  1402 			'DefaultTextUI',
       
  1403 			'DefaultTableModel',
       
  1404 			'DefaultTableColumnModel',
       
  1405 			'DefaultTableCellRenderer.UIResource',
       
  1406 			'DefaultTableCellRenderer',
       
  1407 			'DefaultStyledDocument.ElementSpec',
       
  1408 			'DefaultStyledDocument.AttributeUndoableEdit',
       
  1409 			'DefaultStyledDocument',
       
  1410 			'DefaultSingleSelectionModel',
       
  1411 			'DefaultMutableTreeNode',
       
  1412 			'DefaultMetalTheme',
       
  1413 			'DefaultMenuLayout',
       
  1414 			'DefaultListSelectionModel',
       
  1415 			'DefaultListModel',
       
  1416 			'DefaultListCellRenderer.UIResource',
       
  1417 			'DefaultListCellRenderer',
       
  1418 			'DefaultHighlighter.DefaultHighlightPainter',
       
  1419 			'DefaultHighlighter',
       
  1420 			'DefaultFocusManager',
       
  1421 			'DefaultEditorKit.PasteAction,',
       
  1422 			'DefaultEditorKit.InsertTabAction',
       
  1423 			'DefaultEditorKit.InsertContentAction',
       
  1424 			'DefaultEditorKit.InsertBreakAction',
       
  1425 			'DefaultEditorKit.DefaultKeyTypedAction',
       
  1426 			'DefaultEditorKit.CutAction',
       
  1427 			'DefaultEditorKit.CopyAction',
       
  1428 			'DefaultEditorKit.BeepAction',
       
  1429 			'DefaultEditorKit',
       
  1430 			'DefaultDesktopManager',
       
  1431 			'DefaultComboBoxModel',
       
  1432 			'DefaultColorSelectionModel',
       
  1433 			'DefaultCellEditor',
       
  1434 			'DefaultCaret',
       
  1435 			'DefaultButtonModel',
       
  1436 			'DefaultBoundedRangeModel',
       
  1437 			'DecimalFormatSymbols',
       
  1438 			'DecimalFormat',
       
  1439 			'DebugGraphics',
       
  1440 			'DateFormatSymbols',
       
  1441 			'DateFormat',
       
  1442 			'Date',
       
  1443 			'DatagramSocketImplFactory',
       
  1444 			'DatagramSocketImpl',
       
  1445 			'DatagramSocket',
       
  1446 			'DatagramPacket',
       
  1447 			'DatabaseMetaData',
       
  1448 			'DataTruncation',
       
  1449 			'DataOutputStream',
       
  1450 			'DataOutputStream',
       
  1451 			'DataOutput',
       
  1452 			'DataLine.Info',
       
  1453 			'DataLine',
       
  1454 			'DataInputStream',
       
  1455 			'DataInput',
       
  1456 			'DataFormatException',
       
  1457 			'DataFlavor',
       
  1458 			'DataBufferUShort',
       
  1459 			'DataBufferShort',
       
  1460 			'DataBufferInt',
       
  1461 			'DataBufferByte',
       
  1462 			'DataBuffer',
       
  1463 			'DTDConstants',
       
  1464 			'DTD',
       
  1465 			'DSAPublicKeySpec',
       
  1466 			'DSAPublicKey',
       
  1467 			'DSAPrivateKeySpec',
       
  1468 			'DSAPrivateKey',
       
  1469 			'DSAParams',
       
  1470 			'DSAParameterSpec',
       
  1471 			'DSAKeyPairGenerator',
       
  1472 			'DSAKey',
       
  1473 			'DGC',
       
  1474 			'DATA_CONVERSION',
       
  1475 			'Customizer',
       
  1476 			'CustomValue',
       
  1477 			'CustomMarshal',
       
  1478 			'Cursor',
       
  1479 			'CurrentOperations',
       
  1480 			'CurrentHolder',
       
  1481 			'CurrentHelper',
       
  1482 			'Current',
       
  1483 			'CubicCurve2D.Float',
       
  1484 			'CubicCurve2D.Double',
       
  1485 			'CubicCurve2D',
       
  1486 			'CropImageFilter',
       
  1487 			'ConvolveOp',
       
  1488 			'ControllerEventListener',
       
  1489 			'ControlFactory',
       
  1490 			'Control.Type',
       
  1491 			'Control',
       
  1492 			'ContextualRenderedImageFactory',
       
  1493 			'ContextNotEmptyException',
       
  1494 			'ContextList',
       
  1495 			'Context',
       
  1496 			'ContentModel',
       
  1497 			'ContentHandlerFactory',
       
  1498 			'ContentHandler',
       
  1499 			'ContainerListener',
       
  1500 			'ContainerEvent',
       
  1501 			'ContainerAdapter',
       
  1502 			'Container',
       
  1503 			'Constructor',
       
  1504 			'Connection',
       
  1505 			'ConnectIOException',
       
  1506 			'ConnectException',
       
  1507 			'ConnectException',
       
  1508 			'ConfigurationException',
       
  1509 			'ConcurrentModificationException',
       
  1510 			'CompoundName',
       
  1511 			'CompoundEdit',
       
  1512 			'CompoundControl.Type',
       
  1513 			'CompoundControl',
       
  1514 			'CompoundBorder',
       
  1515 			'CompositeView',
       
  1516 			'CompositeName',
       
  1517 			'CompositeContext',
       
  1518 			'Composite',
       
  1519 			'ComponentView',
       
  1520 			'ComponentUI',
       
  1521 			'ComponentSampleModel',
       
  1522 			'ComponentOrientation',
       
  1523 			'ComponentListener',
       
  1524 			'ComponentInputMapUIResource',
       
  1525 			'ComponentInputMap',
       
  1526 			'ComponentEvent',
       
  1527 			'ComponentColorModel',
       
  1528 			'ComponentAdapter',
       
  1529 			'Component',
       
  1530 			'CompletionStatusHelper',
       
  1531 			'CompletionStatus',
       
  1532 			'Compiler',
       
  1533 			'Comparator',
       
  1534 			'Comparable',
       
  1535 			'CommunicationException',
       
  1536 			'ComboPopup',
       
  1537 			'ComboBoxUI',
       
  1538 			'ComboBoxModel',
       
  1539 			'ComboBoxEditor',
       
  1540 			'ColorUIResource',
       
  1541 			'ColorSpace',
       
  1542 			'ColorSelectionModel',
       
  1543 			'ColorModel',
       
  1544 			'ColorConvertOp',
       
  1545 			'ColorChooserUI',
       
  1546 			'ColorChooserComponentFactory',
       
  1547 			'Color',
       
  1548 			'Collections',
       
  1549 			'Collection',
       
  1550 			'Collator',
       
  1551 			'CollationKey',
       
  1552 			'CollationElementIterator',
       
  1553 			'CodeSource',
       
  1554 			'Cloneable',
       
  1555 			'CloneNotSupportedException',
       
  1556 			'Clob',
       
  1557 			'ClipboardOwner',
       
  1558 			'Clipboard',
       
  1559 			'Clip',
       
  1560 			'ClassNotFoundException',
       
  1561 			'ClassLoader',
       
  1562 			'ClassFormatError',
       
  1563 			'ClassDesc',
       
  1564 			'ClassCircularityError',
       
  1565 			'ClassCastException',
       
  1566 			'Class',
       
  1567 			'ChoiceFormat',
       
  1568 			'Choice',
       
  1569 			'Checksum',
       
  1570 			'CheckedOutputStream',
       
  1571 			'CheckedInputStream',
       
  1572 			'CheckboxMenuItem',
       
  1573 			'CheckboxGroup',
       
  1574 			'Checkbox',
       
  1575 			'CharacterIterator',
       
  1576 			'Character.UnicodeBlock',
       
  1577 			'Character.Subset',
       
  1578 			'Character',
       
  1579 			'CharSeqHolder',
       
  1580 			'CharSeqHelper',
       
  1581 			'CharHolder',
       
  1582 			'CharConversionException',
       
  1583 			'CharArrayWriter',
       
  1584 			'CharArrayReader',
       
  1585 			'ChangedCharSetException',
       
  1586 			'ChangeListener',
       
  1587 			'ChangeEvent',
       
  1588 			'CertificateParsingException',
       
  1589 			'CertificateNotYetValidException',
       
  1590 			'CertificateFactorySpi',
       
  1591 			'CertificateFactory',
       
  1592 			'CertificateExpiredException',
       
  1593 			'CertificateException',
       
  1594 			'CertificateEncodingException',
       
  1595 			'Certificate.CertificateRep',
       
  1596 			'Certificate',
       
  1597 			'CellRendererPane',
       
  1598 			'CellEditorListener',
       
  1599 			'CellEditor',
       
  1600 			'CaretListener',
       
  1601 			'CaretEvent',
       
  1602 			'Caret',
       
  1603 			'CardLayout',
       
  1604 			'Canvas',
       
  1605 			'CannotUndoException',
       
  1606 			'CannotRedoException',
       
  1607 			'CannotProceedHolder',
       
  1608 			'CannotProceedHelper',
       
  1609 			'CannotProceedException',
       
  1610 			'CannotProceed',
       
  1611 			'CallableStatement',
       
  1612 			'Calendar',
       
  1613 			'CTX_RESTRICT_SCOPE',
       
  1614 			'CSS.Attribute',
       
  1615 			'CSS',
       
  1616 			'CRLException',
       
  1617 			'CRL',
       
  1618 			'CRC32',
       
  1619 			'COMM_FAILURE',
       
  1620 			'CMMException',
       
  1621 			'ByteLookupTable',
       
  1622 			'ByteHolder',
       
  1623 			'ByteArrayOutputStream',
       
  1624 			'ByteArrayInputStream',
       
  1625 			'Byte',
       
  1626 			'ButtonUI',
       
  1627 			'ButtonModel',
       
  1628 			'ButtonGroup',
       
  1629 			'Button',
       
  1630 			'BufferedWriter',
       
  1631 			'BufferedReader',
       
  1632 			'BufferedOutputStream',
       
  1633 			'BufferedInputStream',
       
  1634 			'BufferedImageOp',
       
  1635 			'BufferedImageFilter',
       
  1636 			'BufferedImage',
       
  1637 			'BreakIterator',
       
  1638 			'BoxedValueHelper',
       
  1639 			'BoxView',
       
  1640 			'BoxLayout',
       
  1641 			'Box.Filler',
       
  1642 			'Box',
       
  1643 			'Bounds',
       
  1644 			'BoundedRangeModel',
       
  1645 			'BorderUIResource.TitledBorderUIResource',
       
  1646 			'BorderUIResource.MatteBorderUIResource',
       
  1647 			'BorderUIResource.LineBorderUIResource',
       
  1648 			'BorderUIResource.EtchedBorderUIResource',
       
  1649 			'BorderUIResource.EmptyBorderUIResource',
       
  1650 			'BorderUIResource.CompoundBorderUIResource',
       
  1651 			'BorderUIResource.BevelBorderUIResource',
       
  1652 			'BorderUIResource',
       
  1653 			'BorderLayout',
       
  1654 			'BorderFactory',
       
  1655 			'Border',
       
  1656 			'BooleanSeqHolder',
       
  1657 			'BooleanSeqHelper',
       
  1658 			'BooleanHolder',
       
  1659 			'BooleanControl.Type',
       
  1660 			'BooleanControl',
       
  1661 			'Boolean',
       
  1662 			'Book',
       
  1663 			'BlockView',
       
  1664 			'Blob',
       
  1665 			'BitSet',
       
  1666 			'BindingTypeHolder',
       
  1667 			'BindingTypeHelper',
       
  1668 			'BindingType',
       
  1669 			'BindingListHolder',
       
  1670 			'BindingListHelper',
       
  1671 			'BindingIteratorOperations',
       
  1672 			'BindingIteratorHolder',
       
  1673 			'BindingIteratorHelper',
       
  1674 			'BindingIterator',
       
  1675 			'BindingHolder',
       
  1676 			'BindingHelper',
       
  1677 			'Binding',
       
  1678 			'BindException',
       
  1679 			'BinaryRefAddr',
       
  1680 			'BigInteger',
       
  1681 			'BigDecimal',
       
  1682 			'BevelBorder',
       
  1683 			'Beans',
       
  1684 			'BeanInfo',
       
  1685 			'BeanDescriptor',
       
  1686 			'BeanContextSupport.BCSIterator',
       
  1687 			'BeanContextSupport',
       
  1688 			'BeanContextServicesSupport.BCSSServiceProvider',
       
  1689 			'BeanContextServicesSupport',
       
  1690 			'BeanContextServicesListener',
       
  1691 			'BeanContextServices',
       
  1692 			'BeanContextServiceRevokedListener',
       
  1693 			'BeanContextServiceRevokedEvent',
       
  1694 			'BeanContextServiceProviderBeanInfo',
       
  1695 			'BeanContextServiceProvider',
       
  1696 			'BeanContextServiceAvailableEvent',
       
  1697 			'BeanContextProxy',
       
  1698 			'BeanContextMembershipListener',
       
  1699 			'BeanContextMembershipEvent',
       
  1700 			'BeanContextEvent',
       
  1701 			'BeanContextContainerProxy',
       
  1702 			'BeanContextChildSupport',
       
  1703 			'BeanContextChildComponentProxy',
       
  1704 			'BeanContextChild',
       
  1705 			'BeanContext',
       
  1706 			'BatchUpdateException',
       
  1707 			'BasicViewportUI',
       
  1708 			'BasicTreeUI',
       
  1709 			'BasicToolTipUI',
       
  1710 			'BasicToolBarUI',
       
  1711 			'BasicToolBarSeparatorUI',
       
  1712 			'BasicToggleButtonUI',
       
  1713 			'BasicTextUI.BasicHighlighter',
       
  1714 			'BasicTextUI.BasicCaret',
       
  1715 			'BasicTextUI',
       
  1716 			'BasicTextPaneUI',
       
  1717 			'BasicTextFieldUI',
       
  1718 			'BasicTextAreaUI',
       
  1719 			'BasicTableUI',
       
  1720 			'BasicTableHeaderUI',
       
  1721 			'BasicTabbedPaneUI',
       
  1722 			'BasicStroke',
       
  1723 			'BasicSplitPaneUI',
       
  1724 			'BasicSplitPaneDivider',
       
  1725 			'BasicSliderUI',
       
  1726 			'BasicSeparatorUI',
       
  1727 			'BasicScrollPaneUI',
       
  1728 			'BasicScrollBarUI',
       
  1729 			'BasicRootPaneUI',
       
  1730 			'BasicRadioButtonUI',
       
  1731 			'BasicRadioButtonMenuItemUI',
       
  1732 			'BasicProgressBarUI',
       
  1733 			'BasicPopupMenuUI',
       
  1734 			'BasicPopupMenuSeparatorUI',
       
  1735 			'BasicPermission',
       
  1736 			'BasicPasswordFieldUI',
       
  1737 			'BasicPanelUI',
       
  1738 			'BasicOptionPaneUI.ButtonAreaLayout',
       
  1739 			'BasicOptionPaneUI',
       
  1740 			'BasicMenuUI',
       
  1741 			'BasicMenuItemUI',
       
  1742 			'BasicMenuBarUI',
       
  1743 			'BasicLookAndFeel',
       
  1744 			'BasicListUI',
       
  1745 			'BasicLabelUI',
       
  1746 			'BasicInternalFrameUI',
       
  1747 			'BasicInternalFrameTitlePane',
       
  1748 			'BasicIconFactory',
       
  1749 			'BasicHTML',
       
  1750 			'BasicGraphicsUtils',
       
  1751 			'BasicFileChooserUI',
       
  1752 			'BasicEditorPaneUI',
       
  1753 			'BasicDirectoryModel',
       
  1754 			'BasicDesktopPaneUI',
       
  1755 			'BasicDesktopIconUI',
       
  1756 			'BasicComboPopup',
       
  1757 			'BasicComboBoxUI',
       
  1758 			'BasicComboBoxRenderer.UIResource',
       
  1759 			'BasicComboBoxRenderer',
       
  1760 			'BasicComboBoxEditor.UIResource',
       
  1761 			'BasicComboBoxEditor',
       
  1762 			'BasicColorChooserUI',
       
  1763 			'BasicCheckBoxUI',
       
  1764 			'BasicCheckBoxMenuItemUI',
       
  1765 			'BasicButtonUI',
       
  1766 			'BasicButtonListener',
       
  1767 			'BasicBorders.ToggleButtonBorder',
       
  1768 			'BasicBorders.SplitPaneBorder',
       
  1769 			'BasicBorders.RadioButtonBorder',
       
  1770 			'BasicBorders.MenuBarBorder',
       
  1771 			'BasicBorders.MarginBorder',
       
  1772 			'BasicBorders.FieldBorder',
       
  1773 			'BasicBorders.ButtonBorder',
       
  1774 			'BasicBorders',
       
  1775 			'BasicAttributes',
       
  1776 			'BasicAttribute',
       
  1777 			'BasicArrowButton',
       
  1778 			'BandedSampleModel',
       
  1779 			'BandCombineOp',
       
  1780 			'BadLocationException',
       
  1781 			'BadKind',
       
  1782 			'BAD_TYPECODE',
       
  1783 			'BAD_POLICY_VALUE',
       
  1784 			'BAD_POLICY_TYPE',
       
  1785 			'BAD_POLICY',
       
  1786 			'BAD_PARAM',
       
  1787 			'BAD_OPERATION',
       
  1788 			'BAD_INV_ORDER',
       
  1789 			'BAD_CONTEXT',
       
  1790 			'Autoscroll',
       
  1791 			'Authenticator',
       
  1792 			'AuthenticationNotSupportedException',
       
  1793 			'AuthenticationException',
       
  1794 			'AudioSystem',
       
  1795 			'AudioPermission',
       
  1796 			'AudioInputStream',
       
  1797 			'AudioFormat.Encoding',
       
  1798 			'AudioFormat',
       
  1799 			'AudioFileWriter',
       
  1800 			'AudioFileReader',
       
  1801 			'AudioFileFormat.Type',
       
  1802 			'AudioFileFormat',
       
  1803 			'AudioClip',
       
  1804 			'Attributes.Name',
       
  1805 			'Attributes',
       
  1806 			'AttributedString',
       
  1807 			'AttributedCharacterIterator.Attribute',
       
  1808 			'AttributedCharacterIterator',
       
  1809 			'AttributeSet.ParagraphAttribute',
       
  1810 			'AttributeSet.FontAttribute',
       
  1811 			'AttributeSet.ColorAttribute',
       
  1812 			'AttributeSet.CharacterAttribute',
       
  1813 			'AttributeSet',
       
  1814 			'AttributeModificationException',
       
  1815 			'AttributeList',
       
  1816 			'AttributeInUseException',
       
  1817 			'Attribute',
       
  1818 			'AsyncBoxView',
       
  1819 			'Arrays',
       
  1820 			'ArrayStoreException',
       
  1821 			'ArrayList',
       
  1822 			'ArrayIndexOutOfBoundsException',
       
  1823 			'Array',
       
  1824 			'ArithmeticException',
       
  1825 			'AreaAveragingScaleFilter',
       
  1826 			'Area',
       
  1827 			'Arc2D.Float',
       
  1828 			'Arc2D.Double',
       
  1829 			'Arc2D',
       
  1830 			'ApplicationException',
       
  1831 			'AppletStub',
       
  1832 			'AppletInitializer',
       
  1833 			'AppletContext',
       
  1834 			'Applet',
       
  1835 			'AnySeqHolder',
       
  1836 			'AnySeqHelper',
       
  1837 			'AnyHolder',
       
  1838 			'Any',
       
  1839 			'Annotation',
       
  1840 			'AncestorListener',
       
  1841 			'AncestorEvent',
       
  1842 			'AlreadyBoundHolder',
       
  1843 			'AlreadyBoundHelper',
       
  1844 			'AlreadyBoundException',
       
  1845 			'AlreadyBound',
       
  1846 			'AlphaComposite',
       
  1847 			'AllPermission',
       
  1848 			'AlgorithmParametersSpi',
       
  1849 			'AlgorithmParameters',
       
  1850 			'AlgorithmParameterSpec',
       
  1851 			'AlgorithmParameterGeneratorSpi',
       
  1852 			'AlgorithmParameterGenerator',
       
  1853 			'AffineTransformOp',
       
  1854 			'AffineTransform',
       
  1855 			'Adler32',
       
  1856 			'AdjustmentListener',
       
  1857 			'AdjustmentEvent',
       
  1858 			'Adjustable',
       
  1859 			'ActiveEvent',
       
  1860 			'Activator',
       
  1861 			'ActivationSystem',
       
  1862 			'ActivationMonitor',
       
  1863 			'ActivationInstantiator',
       
  1864 			'ActivationID',
       
  1865 			'ActivationGroupID',
       
  1866 			'ActivationGroupDesc.CommandEnvironment',
       
  1867 			'ActivationGroupDesc',
       
  1868 			'ActivationGroup',
       
  1869 			'ActivationException',
       
  1870 			'ActivationDesc',
       
  1871 			'ActivateFailedException',
       
  1872 			'Activatable',
       
  1873 			'ActionMapUIResource',
       
  1874 			'ActionMap',
       
  1875 			'ActionListener',
       
  1876 			'ActionEvent',
       
  1877 			'Action',
       
  1878 			'AclNotFoundException',
       
  1879 			'AclEntry',
       
  1880 			'Acl',
       
  1881 			'AccessibleValue',
       
  1882 			'AccessibleText',
       
  1883 			'AccessibleTableModelChange',
       
  1884 			'AccessibleTable',
       
  1885 			'AccessibleStateSet',
       
  1886 			'AccessibleState',
       
  1887 			'AccessibleSelection',
       
  1888 			'AccessibleRole',
       
  1889 			'AccessibleResourceBundle',
       
  1890 			'AccessibleRelationSet',
       
  1891 			'AccessibleRelation',
       
  1892 			'AccessibleObject',
       
  1893 			'AccessibleIcon',
       
  1894 			'AccessibleHypertext',
       
  1895 			'AccessibleHyperlink',
       
  1896 			'AccessibleContext',
       
  1897 			'AccessibleComponent',
       
  1898 			'AccessibleBundle',
       
  1899 			'AccessibleAction',
       
  1900 			'Accessible',
       
  1901 			'AccessException',
       
  1902 			'AccessController',
       
  1903 			'AccessControlException',
       
  1904 			'AccessControlContext',
       
  1905 			'AbstractWriter',
       
  1906 			'AbstractUndoableEdit',
       
  1907 			'AbstractTableModel',
       
  1908 			'AbstractSet',
       
  1909 			'AbstractSequentialList',
       
  1910 			'AbstractMethodError',
       
  1911 			'AbstractMap',
       
  1912 			'AbstractListModel',
       
  1913 			'AbstractList',
       
  1914 			'AbstractLayoutCache.NodeDimensions',
       
  1915 			'AbstractLayoutCache',
       
  1916 			'AbstractDocument.ElementEdit',
       
  1917 			'AbstractDocument.Content',
       
  1918 			'AbstractDocument.AttributeContext',
       
  1919 			'AbstractDocument',
       
  1920 			'AbstractColorChooserPanel',
       
  1921 			'AbstractCollection',
       
  1922 			'AbstractCellEditor',
       
  1923 			'AbstractButton',
       
  1924 			'AbstractBorder',
       
  1925 			'AbstractAction',
       
  1926 			'AWTPermission',
       
  1927 			'AWTException',
       
  1928 			'AWTEventMulticaster',
       
  1929 			'AWTEventListener',
       
  1930 			'AWTEvent',
       
  1931 			'AWTError',
       
  1932 			'ARG_OUT',
       
  1933 			'ARG_INOUT',
       
  1934 			'ARG_IN'
       
  1935 			),
       
  1936 		4 => array(
       
  1937 			'void',
       
  1938 			'short',
       
  1939 			'long',
       
  1940 			'int',
       
  1941 			'double',
       
  1942 			'char',
       
  1943 			'byte',
       
  1944 			'boolean',
       
  1945 			'float'
       
  1946 			),
       
  1947 		5 => array(
       
  1948 			'toList',
       
  1949 			'subMap',
       
  1950 			'sort',
       
  1951 			'size',
       
  1952 			'reverseEach',
       
  1953 			'reverse',
       
  1954 			'pop',
       
  1955 			'min',
       
  1956 			'max',
       
  1957 			'join',
       
  1958 			'intersect',
       
  1959 			'inject',
       
  1960 			'grep',
       
  1961 			'get',
       
  1962 			'flatten',
       
  1963 			'findIndexOf',
       
  1964 			'findAll',
       
  1965 			'find',
       
  1966 			'eachWithIndex',
       
  1967 			'eachPropertyName',
       
  1968 			'eachProperty',
       
  1969 			'each',
       
  1970 			'count',
       
  1971 			'collect',
       
  1972 			'asSynchronized',
       
  1973 			'asImmutable',
       
  1974 			'allProperties'
       
  1975 			),
       
  1976 		6 => array(
       
  1977 			'tokenize',
       
  1978 			'toURL',
       
  1979 			'toLong',
       
  1980 			'toList',
       
  1981 			'toCharacter',
       
  1982 			'padRight',
       
  1983 			'padLeft',
       
  1984 			'eachMatch',
       
  1985 			'contains',
       
  1986 			'center'
       
  1987 			),
       
  1988 		7 => array(
       
  1989 			'writeLine',
       
  1990 			'write',
       
  1991 			'withWriterAppend',
       
  1992 			'withWriter',
       
  1993 			'withStreams',
       
  1994 			'withStream',
       
  1995 			'withReader',
       
  1996 			'withPrintWriter',
       
  1997 			'withOutputStream',
       
  1998 			'transformLine',
       
  1999 			'transformChar',
       
  2000 			'splitEachLine',
       
  2001 			'getText',
       
  2002 			'filterLine',
       
  2003 			'encodeBase64',
       
  2004 			'eachLines',
       
  2005 			'eachLine',
       
  2006 			'eachFileRecurse',
       
  2007 			'eachFile',
       
  2008 			'eachByte',
       
  2009 			'append'
       
  2010 			),
       
  2011 		8 => array(
       
  2012 			'dump',
       
  2013 			'inspect',
       
  2014 			'invokeMethod',
       
  2015 			'print',
       
  2016 			'println',
       
  2017 			'step',
       
  2018 			'times',
       
  2019 			'upto',
       
  2020 			'use',
       
  2021 			'getText',
       
  2022 			'start',
       
  2023 			'startDaemon',
       
  2024 			'getLastMatcher'
       
  2025 			),
       
  2026 		9 => array(
       
  2027 			'Sql',
       
  2028 			'call',
       
  2029 			'eachRow',
       
  2030 			'execute',
       
  2031 			'executeUpdate',
       
  2032 			'close'
       
  2033 			)
       
  2034 		),
       
  2035 	'SYMBOLS' => array(
       
  2036 		'(', ')', '[', ']', '{', '}', '*', '&', '%', '!', ';', '<', '>', '?', '|', '='
       
  2037 		),
       
  2038 	'CASE_SENSITIVE' => array(
       
  2039 		GESHI_COMMENTS => true,
       
  2040 		1 => false,
       
  2041 		2 => false,
       
  2042 		3 => true,
       
  2043 		4 => true,
       
  2044 		5 => true,
       
  2045 		6 => true,
       
  2046 		7 => true,
       
  2047 		8 => true,
       
  2048 		9 => true
       
  2049 		),
       
  2050 	'STYLES' => array(
       
  2051 		'KEYWORDS' => array(
       
  2052 			1 => 'color: #b1b100;',
       
  2053 			2 => 'color: #000000; font-weight: bold;',
       
  2054 			3 => 'color: #aaaadd; font-weight: bold;',
       
  2055 			4 => 'color: #993333;',
       
  2056 			5 => 'color: #663399;',
       
  2057 			6 => 'color: #CC0099;',
       
  2058 			7 => 'color: #FFCC33;',
       
  2059 			8 => 'color: #993399;',
       
  2060 			9 => 'color: #993399; font-weight: bold;'
       
  2061 			),
       
  2062 		'COMMENTS' => array(
       
  2063 			1=> 'color: #808080; font-style: italic;',
       
  2064 			2=> 'color: #a1a100;',
       
  2065 			'MULTI' => 'color: #808080; font-style: italic;'
       
  2066 			),
       
  2067 		'ESCAPE_CHAR' => array(
       
  2068 			0 => 'color: #000099; font-weight: bold;'
       
  2069 			),
       
  2070 		'BRACKETS' => array(
       
  2071 			0 => 'color: #66cc66;'
       
  2072 			),
       
  2073 		'STRINGS' => array(
       
  2074 			0 => 'color: #ff0000;'
       
  2075 			),
       
  2076 		'NUMBERS' => array(
       
  2077 			0 => 'color: #cc66cc;'
       
  2078 			),
       
  2079 		'METHODS' => array(
       
  2080 			1 => 'color: #006600;',
       
  2081 			2 => 'color: #006600;'
       
  2082 			),
       
  2083 		'SYMBOLS' => array(
       
  2084 			0 => 'color: #66cc66;'
       
  2085 			),
       
  2086 		'SCRIPT' => array(
       
  2087 			),
       
  2088 		'REGEXPS' => array(
       
  2089 			0 => 'color: #0000ff;'
       
  2090 			)
       
  2091 		),
       
  2092 	'URLS' => array(
       
  2093 		1 => 'http://www.google.de/search?q=site%3Adocs.codehaus.org/%20{FNAME}',
       
  2094 		2 => 'http://www.google.de/search?q=site%3Adocs.codehaus.org/%20{FNAME}',
       
  2095 		3 => 'http://www.google.de/search?as_q={FNAME}&num=100&hl=en&as_occt=url&as_sitesearch=java.sun.com%2Fj2se%2F1.5.0%2Fdocs%2Fapi%2F',
       
  2096 		4 => 'http://www.google.de/search?q=site%3Adocs.codehaus.org/%20{FNAME}',
       
  2097 		5 => 'http://www.google.de/search?q=site%3Adocs.codehaus.org/%20{FNAME}',
       
  2098 		6 => 'http://www.google.de/search?q=site%3Adocs.codehaus.org/%20{FNAME}',
       
  2099 		7 => 'http://www.google.de/search?q=site%3Adocs.codehaus.org/%20{FNAME}',
       
  2100 		8 => 'http://www.google.de/search?q=site%3Adocs.codehaus.org/%20{FNAME}',
       
  2101 		9 => 'http://www.google.de/search?q=site%3Adocs.codehaus.org/%20{FNAME}'
       
  2102 		),
       
  2103 	'OOLANG' => true,
       
  2104 	'OBJECT_SPLITTERS' => array(
       
  2105 		1 => '.'
       
  2106 		),
       
  2107 	'REGEXPS' => array(
       
  2108 		0 => '\\$\\{[a-zA-Z_][a-zA-Z0-9_]*\\}'
       
  2109 		),
       
  2110 	'STRICT_MODE_APPLIES' => GESHI_NEVER,
       
  2111 	'SCRIPT_DELIMITERS' => array(
       
  2112 		),
       
  2113 	'HIGHLIGHT_STRICT_BLOCK' => array(
       
  2114 		)
       
  2115 );
       
  2116 
       
  2117 ?>