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