![JAR search and dependency download from the Maven repository](/logo.png)
org.eclipse.jdt.internal.jarinjarloader.JIJConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-jarinjar-plugin Show documentation
Show all versions of gradle-jarinjar-plugin Show documentation
A Gradle plugin for generating self-contained executable jars.
/*******************************************************************************
* Copyright (c) 2007, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Ferenc Hechler, [email protected] - 262748 [jar exporter] extract constants for string literals in JarRsrcLoader et al.
*******************************************************************************/
package org.eclipse.jdt.internal.jarinjarloader;
/**
* Constants used in the Jar-in-Jar loader.
*
* Some of these are duplicated in JIJConstants in the source for the Runnable Jar File Export Wizard:
* {@link org.eclipse.jdt.internal.ui.jarpackagerfat}.
*
* @since 3.6
*/
final class JIJConstants {
static final String REDIRECTED_CLASS_PATH_MANIFEST_NAME = "Rsrc-Class-Path"; //$NON-NLS-1$
static final String REDIRECTED_MAIN_CLASS_MANIFEST_NAME = "Rsrc-Main-Class"; //$NON-NLS-1$
static final String DEFAULT_REDIRECTED_CLASSPATH = ""; //$NON-NLS-1$
static final String MAIN_METHOD_NAME = "main"; //$NON-NLS-1$
static final String JAR_INTERNAL_URL_PROTOCOL_WITH_COLON = "jar:rsrc:"; //$NON-NLS-1$
static final String JAR_INTERNAL_SEPARATOR = "!/"; //$NON-NLS-1$
static final String INTERNAL_URL_PROTOCOL_WITH_COLON = "rsrc:"; //$NON-NLS-1$
static final String INTERNAL_URL_PROTOCOL = "rsrc"; //$NON-NLS-1$
static final String PATH_SEPARATOR = "/"; //$NON-NLS-1$
static final String CURRENT_DIR = "./"; //$NON-NLS-1$
static final String UTF8_ENCODING = "UTF-8"; //$NON-NLS-1$
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy