KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

groovy.php 51KB

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