KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > core > iproduct > ILauncherInfo


1 /*******************************************************************************
2  * Copyright (c) 2005, 2007 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.pde.internal.core.iproduct;
12
13 public interface ILauncherInfo extends IProductObject {
14     
15     public static final String JavaDoc LINUX_ICON = "linuxIcon"; //$NON-NLS-1$
16

17     public static final String JavaDoc MACOSX_ICON = "macosxIcon"; //$NON-NLS-1$
18

19     public static final String JavaDoc SOLARIS_LARGE = "solarisLarge"; //$NON-NLS-1$
20
public static final String JavaDoc SOLARIS_MEDIUM = "solarisMedium"; //$NON-NLS-1$
21
public static final String JavaDoc SOLARIS_SMALL = "solarisSmall"; //$NON-NLS-1$
22
public static final String JavaDoc SOLARIS_TINY = "solarisTiny"; //$NON-NLS-1$
23

24     public static final String JavaDoc WIN32_16_LOW = "winSmallLow"; //$NON-NLS-1$
25
public static final String JavaDoc WIN32_16_HIGH = "winSmallHigh"; //$NON-NLS-1$
26
public static final String JavaDoc WIN32_32_LOW = "winMediumLow"; //$NON-NLS-1$
27
public static final String JavaDoc WIN32_32_HIGH = "winMediumHigh"; //$NON-NLS-1$
28
public static final String JavaDoc WIN32_48_LOW = "winLargeLow"; //$NON-NLS-1$
29
public static final String JavaDoc WIN32_48_HIGH = "winLargeHigh"; //$NON-NLS-1$
30

31     public static final String JavaDoc P_USE_ICO = "useIco"; //$NON-NLS-1$
32
public static final String JavaDoc P_ICO_PATH = "icoFile"; //$NON-NLS-1$
33
public static final String JavaDoc P_LAUNCHER = "launcher"; //$NON-NLS-1$
34

35     String JavaDoc getLauncherName();
36     
37     void setLauncherName(String JavaDoc name);
38     
39     void setIconPath(String JavaDoc iconId, String JavaDoc path);
40     
41     String JavaDoc getIconPath(String JavaDoc iconId);
42     
43     boolean usesWinIcoFile();
44     
45     void setUseWinIcoFile(boolean use);
46 }
47
Popular Tags