Project

General

Profile

Download (1.9 KB) Statistics
| Branch: | Tag: | Revision:
1
/*******************************************************************************
2
 * Copyright (c) 2006, 2009 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 *
8
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
10
 ******************************************************************************/
11

    
12
package org.eclipse.ui.internal.navigator.extensions;
13

    
14
/**
15
 * @since 3.2
16
 *
17
 */
18
public interface IViewerExtPtConstants {
19

    
20
	/** */
21
	String TAG_SAVEABLES_PROVIDER_FACTORY = "saveablesProviderFactory"; //$NON-NLS-1$
22

    
23
	/** */
24
	String TAG_VIEWER = "viewer"; //$NON-NLS-1$
25
	
26
	/** */
27
	String ATT_INHERIT_BINDINGS_FROM_VIEWER = "inheritBindingsFromViewer"; //$NON-NLS-1$
28

    
29
	/** */
30
	String ATT_HELP_CONTEXT = "helpContext"; //$NON-NLS-1$
31

    
32
	/** */
33
	String TAG_VIEWER_CONTENT_BINDING = "viewerContentBinding"; //$NON-NLS-1$
34

    
35
	/** */
36
	String TAG_VIEWER_ACTION_BINDING = "viewerActionBinding"; //$NON-NLS-1$
37

    
38
	/** */
39
	String TAG_POPUP_MENU = "popupMenu"; //$NON-NLS-1$ 
40

    
41
	/** */
42
	String TAG_OPTIONS = "options"; //$NON-NLS-1$ 
43

    
44
	/** */
45
	String TAG_PROPERTY = "property"; //$NON-NLS-1$
46
	
47
	/** */
48
	String TAG_DRAG_ASSISTANT = "dragAssistant"; //$NON-NLS-1$
49

    
50
	/** */
51
	String ATT_ID = "id"; //$NON-NLS-1$
52

    
53
	/** */
54
	String ATT_ALLOWS_PLATFORM_CONTRIBUTIONS = "allowsPlatformContributions"; //$NON-NLS-1$
55

    
56
	/** */
57
	String TAG_INSERTION_POINT = "insertionPoint"; //$NON-NLS-1$
58

    
59
	/** */
60
	String ATT_NAME = "name"; //$NON-NLS-1$
61

    
62
	/** */
63
	String ATT_SEPARATOR = "separator"; //$NON-NLS-1$
64

    
65
	/** */
66
	String ATT_VIEWER_ID = "viewerId"; //$NON-NLS-1$
67

    
68
	/** */
69
	String ATT_POPUP_MENU_ID = "popupMenuId"; //$NON-NLS-1$
70

    
71
	/** */
72
	String ATT_VALUE = "value"; //$NON-NLS-1$
73
	
74
	/** */
75
	String ATT_CLASS = "class"; //$NON-NLS-1$
76
	
77

    
78
}
(12-12/29)