KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > update > internal > configurator > branding > IBundleGroupConstants


1 /*******************************************************************************
2  * Copyright (c) 2004, 2005 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.update.internal.configurator.branding;
12
13 /**
14  * These constants define the set of properties that the UI expects to
15  * be available via <code>IBundleGroup.getProperty(String)</code>.
16  *
17  * @since 3.0
18  * @see org.eclipse.core.runtime.IBundleGroup#getProperty(String)
19  */

20 public interface IBundleGroupConstants {
21     /**
22      * An image which can be shown in an "about features" dialog (32x32).
23      */

24     public static final String JavaDoc FEATURE_IMAGE = "featureImage"; //$NON-NLS-1$
25

26     /**
27      * A help reference for the feature's tips and tricks page (optional).
28      */

29     public static final String JavaDoc TIPS_AND_TRICKS_HREF = "tipsAndTricksHref"; //$NON-NLS-1$
30

31     /**
32      * A URL for the feature's welcome page (special XML-based format)
33      * ($nl$/ prefix to permit locale-specific translations of entire file).
34      * Products designed to run "headless" typically would not have such a page.
35      */

36     public static final String JavaDoc WELCOME_PAGE = "welcomePage"; //$NON-NLS-1$
37

38     /**
39      * The id of a perspective in which to show the welcome page
40      * (optional).
41      */

42     public static final String JavaDoc WELCOME_PERSPECTIVE = "welcomePerspective"; //$NON-NLS-1$
43

44     /**
45      * The URL of the license page for the feature
46      * (optional).
47      */

48     public static final String JavaDoc LICENSE_HREF = "licenseHref"; //$NON-NLS-1$
49
}
50
Popular Tags