01: /*******************************************************************************
02: * Copyright (c) 2004, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.branding;
11:
12: /**
13: * These constants define the set of properties that the UI expects to
14: * be available via <code>IBundleGroup.getProperty(String)</code>.
15: *
16: * @since 3.0
17: * @see org.eclipse.core.runtime.IBundleGroup#getProperty(String)
18: */
19: public interface IBundleGroupConstants {
20:
21: /**
22: * The text to show in an "about features" dialog.
23: */
24: public static final String ABOUT_TEXT = "aboutText"; //$NON-NLS-1$
25:
26: /**
27: * An image which can be shown in an "about features" dialog (32x32).
28: * <p>
29: * The value is a fully qualified valid URL.
30: * </p>
31: */
32: public static final String FEATURE_IMAGE = "featureImage"; //$NON-NLS-1$
33:
34: /**
35: * A help reference for the feature's tips and tricks page (optional).
36: */
37: public static final String TIPS_AND_TRICKS_HREF = "tipsAndTricksHref"; //$NON-NLS-1$
38:
39: /**
40: * The feature's welcome page (special XML-based format).
41: * <p>
42: * The value is a fully qualified valid URL.
43: * </p>
44: * Products designed to run "headless" typically would not have such a page.
45: */
46: public static final String WELCOME_PAGE = "welcomePage"; //$NON-NLS-1$
47:
48: /**
49: * The id of a perspective in which to show the welcome page
50: * (optional).
51: */
52: public static final String WELCOME_PERSPECTIVE = "welcomePerspective"; //$NON-NLS-1$
53:
54: /**
55: * The URL of the license page for the feature (optional).
56: * <p>
57: * The value is a fully qualified valid URL.
58: * </p>
59: */
60: public static final String LICENSE_HREF = "licenseHref"; //$NON-NLS-1$
61: }
|