]> git.uio.no Git - ifi-stolz-refaktor.git/blob - case-study/jdt-after/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/JIJConstants.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-after / ui / org / eclipse / jdt / internal / ui / jarpackagerfat / JIJConstants.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 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  *     Ferenc Hechler, ferenc_hechler@users.sourceforge.net - 262748 [jar exporter] extract constants for string literals in JarRsrcLoader et al.
10  *******************************************************************************/
11 package org.eclipse.jdt.internal.ui.jarpackagerfat;
12
13
14 /**
15  * Constants used in the fat Jar packager.
16  * 
17  * Some of these are duplicated in JIJConstants in the source for the jar in jar loader:
18  * {@link org.eclipse.jdt.internal.jarinjarloader}.
19  * 
20  * @since 3.6
21  */
22 final class JIJConstants {
23         
24         static final String REDIRECTED_CLASS_PATH_MANIFEST_NAME  = "Rsrc-Class-Path";  //$NON-NLS-1$
25         static final String REDIRECTED_MAIN_CLASS_MANIFEST_NAME  = "Rsrc-Main-Class";  //$NON-NLS-1$
26         static final String CURRENT_DIR                          = "./";  //$NON-NLS-1$
27         
28         /**
29          * This is <code>{@link org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader}.class.getName()</code>,
30          * but that's not visible for the PDE builder when building the org.eclipse.jdt.ui plug-in.
31          */
32         static final String LOADER_MAIN_CLASS                    = "org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader";  //$NON-NLS-1$
33 }