A tumblelog CMS built on AJAX, PHP and MySQL.

groovy.php 46KB

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