Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 287454
Collapse All | Expand All

(-).settings/.api_filters (+32 lines)
Lines 1-5 Link Here
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<component id="org.eclipse.jface" version="2">
2
<component id="org.eclipse.jface" version="2">
3
    <resource path="src/org/eclipse/jface/bindings/keys/IKeyLookup.java" type="org.eclipse.jface.bindings.keys.IKeyLookup">
4
        <filter id="403767336">
5
            <message_arguments>
6
                <message_argument value="org.eclipse.jface.bindings.keys.IKeyLookup"/>
7
                <message_argument value="F17_NAME"/>
8
            </message_arguments>
9
        </filter>
10
        <filter id="403767336">
11
            <message_arguments>
12
                <message_argument value="org.eclipse.jface.bindings.keys.IKeyLookup"/>
13
                <message_argument value="F20_NAME"/>
14
            </message_arguments>
15
        </filter>
16
        <filter id="403767336">
17
            <message_arguments>
18
                <message_argument value="org.eclipse.jface.bindings.keys.IKeyLookup"/>
19
                <message_argument value="F19_NAME"/>
20
            </message_arguments>
21
        </filter>
22
        <filter id="403767336">
23
            <message_arguments>
24
                <message_argument value="org.eclipse.jface.bindings.keys.IKeyLookup"/>
25
                <message_argument value="F18_NAME"/>
26
            </message_arguments>
27
        </filter>
28
        <filter id="403767336">
29
            <message_arguments>
30
                <message_argument value="org.eclipse.jface.bindings.keys.IKeyLookup"/>
31
                <message_argument value="F16_NAME"/>
32
            </message_arguments>
33
        </filter>
34
    </resource>
3
    <resource path="src/org/eclipse/jface/dialogs/PopupDialog.java" type="org.eclipse.jface.dialogs.PopupDialog">
35
    <resource path="src/org/eclipse/jface/dialogs/PopupDialog.java" type="org.eclipse.jface.dialogs.PopupDialog">
4
        <filter id="388194388">
36
        <filter id="388194388">
5
            <message_arguments>
37
            <message_arguments>
(-)META-INF/MANIFEST.MF (-1 / +1 lines)
Lines 2-8 Link Here
2
Bundle-ManifestVersion: 2
2
Bundle-ManifestVersion: 2
3
Bundle-Name: %pluginName
3
Bundle-Name: %pluginName
4
Bundle-SymbolicName: org.eclipse.jface
4
Bundle-SymbolicName: org.eclipse.jface
5
Bundle-Version: 3.5.100.qualifier
5
Bundle-Version: 3.6.0.qualifier
6
Bundle-ClassPath: .
6
Bundle-ClassPath: .
7
Bundle-Vendor: %providerName
7
Bundle-Vendor: %providerName
8
Bundle-Localization: plugin
8
Bundle-Localization: plugin
(-)src/org/eclipse/jface/bindings/keys/IKeyLookup.java (+35 lines)
Lines 145-150 Link Here
145
	public static final String F15_NAME = "F15"; //$NON-NLS-1$
145
	public static final String F15_NAME = "F15"; //$NON-NLS-1$
146
146
147
	/**
147
	/**
148
	 * The formal name of the 'F16' key.
149
	 * 
150
	 * @since 3.6
151
	 */
152
	public static final String F16_NAME = "F16"; //$NON-NLS-1$
153
154
	/**
155
	 * The formal name of the 'F17' key.
156
	 * 
157
	 * @since 3.6
158
	 */
159
	public static final String F17_NAME = "F17"; //$NON-NLS-1$
160
161
	/**
162
	 * The formal name of the 'F18' key.
163
	 * 
164
	 * @since 3.6
165
	 */
166
	public static final String F18_NAME = "F18"; //$NON-NLS-1$
167
168
	/**
169
	 * The formal name of the 'F19' key.
170
	 * 
171
	 * @since 3.6
172
	 */
173
	public static final String F19_NAME = "F19"; //$NON-NLS-1$
174
175
	/**
176
	 * The formal name of the 'F20' key.
177
	 * 
178
	 * @since 3.6
179
	 */
180
	public static final String F20_NAME = "F20"; //$NON-NLS-1$
181
182
	/**
148
	 * The formal name of the 'F2' key.
183
	 * The formal name of the 'F2' key.
149
	 */
184
	 */
150
	public static final String F2_NAME = "F2"; //$NON-NLS-1$
185
	public static final String F2_NAME = "F2"; //$NON-NLS-1$
(-)src/org/eclipse/jface/bindings/keys/SWTKeyLookup.java (+15 lines)
Lines 157-162 Link Here
157
		final Integer f15 = new Integer(SWT.F15);
157
		final Integer f15 = new Integer(SWT.F15);
158
		naturalKeyTable.put(F15_NAME, new Integer(SWT.F15));
158
		naturalKeyTable.put(F15_NAME, new Integer(SWT.F15));
159
		nameTable.put(f15, F15_NAME);
159
		nameTable.put(f15, F15_NAME);
160
		final Integer f16 = new Integer(SWT.F16);
161
		naturalKeyTable.put(F16_NAME, new Integer(SWT.F16));
162
		nameTable.put(f16, F16_NAME);
163
		final Integer f17 = new Integer(SWT.F17);
164
		naturalKeyTable.put(F17_NAME, new Integer(SWT.F17));
165
		nameTable.put(f17, F17_NAME);
166
		final Integer f18 = new Integer(SWT.F18);
167
		naturalKeyTable.put(F18_NAME, new Integer(SWT.F18));
168
		nameTable.put(f18, F18_NAME);
169
		final Integer f19 = new Integer(SWT.F19);
170
		naturalKeyTable.put(F19_NAME, new Integer(SWT.F19));
171
		nameTable.put(f19, F19_NAME);
172
		final Integer f20 = new Integer(SWT.F20);
173
		naturalKeyTable.put(F20_NAME, new Integer(SWT.F20));
174
		nameTable.put(f20, F20_NAME);
160
		final Integer ff = new Integer(12); // ASCII 0x0C
175
		final Integer ff = new Integer(12); // ASCII 0x0C
161
		naturalKeyTable.put(FF_NAME, ff);
176
		naturalKeyTable.put(FF_NAME, ff);
162
		nameTable.put(ff, FF_NAME);
177
		nameTable.put(ff, FF_NAME);

Return to bug 287454