KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > intro > impl > IIntroConstants


1 /*******************************************************************************
2  * Copyright (c) 2004, 2006 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 package org.eclipse.ui.internal.intro.impl;
12
13
14 public interface IIntroConstants {
15
16     // all attributes here are by default public static final.
17

18     // General consts.
19
// ---------------
20
String JavaDoc PLUGIN_ID = "org.eclipse.ui.intro"; //$NON-NLS-1$
21
String JavaDoc PREFIX = PLUGIN_ID + "."; //$NON-NLS-1$
22

23     // Empty Standby Content part. This is registered in this plugin,
24
// through markup.
25
String JavaDoc EMPTY_STANDBY_CONTENT_PART = "org.eclipse.ui.intro.config.emptyStandby"; //$NON-NLS-1$
26

27     // Memento constants
28
// ------------------
29
String JavaDoc MEMENTO_PRESENTATION_TAG = "presentation"; //$NON-NLS-1$
30
String JavaDoc MEMENTO_CURRENT_PAGE_ATT = "currentPage"; //$NON-NLS-1$
31
String JavaDoc MEMENTO_STANDBY_PART_TAG = "standbyPart"; //$NON-NLS-1$
32
String JavaDoc MEMENTO_STANDBY_CONTENT_PART_ID_ATT = "contentPartID"; //$NON-NLS-1$
33
String JavaDoc MEMENTO_STANDBY_CONTENT_PART_TAG = "standbyContentPart"; //$NON-NLS-1$
34
String JavaDoc MEMENTO_RESTORE_ATT = "restore"; //$NON-NLS-1$
35

36     // CustomizableIntroPart consts:
37
// -----------------------------
38
// key to retrieve if a standby part is needed.
39
String JavaDoc SHOW_STANDBY_PART = "showStandbyPart"; //$NON-NLS-1$
40

41     // Form implementation consts:
42
// ---------------------------
43
// key to retrieve the into link model object from imageHyperlink widget.
44
// convention: actual string value is class name.
45
String JavaDoc INTRO_LINK = "IntroLink"; //$NON-NLS-1$
46

47     // key to retrive page sub-title from PageContentForm
48
String JavaDoc PAGE_SUBTITLE = "PageSubtitle"; //$NON-NLS-1$
49

50
51     // Performance keys
52
// -----------------------
53
String JavaDoc INTRO = "intro"; //$NON-NLS-1$
54
String JavaDoc PERF_VIEW_CREATION_TIME = PLUGIN_ID + "/perf/createView"; //$NON-NLS-1$
55
String JavaDoc PERF_SET_STANDBY_STATE = PLUGIN_ID + "/perf/setStandbyState"; //$NON-NLS-1$
56
// not exposed in .option. Used because framework is convenient.
57
String JavaDoc PERF_UI_ZOOM = PLUGIN_ID + "/perf/uiZoom"; //$NON-NLS-1$
58

59
60
61
62 }
63
Popular Tags