A tumblelog CMS built on AJAX, PHP and MySQL.

java.php 42KB

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