Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1dcbb4ddc2b47d5c7a8a0c08fccb339c2d34c75a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*******************************************************************************
 * Copyright (c) 2007 compeople AG 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:
 * 	compeople AG (Stefan Liebig) - initial API and implementation
 *  IBM Corporation - bug fixes and enhancements
 *******************************************************************************/
package org.eclipse.equinox.internal.p2.sar;

/**
 * Sar constants
 */
public interface SarConstants {

	/** <code>SARFILE_MARKER</code> */
	String SARFILE_MARKER = "SarFile"; //$NON-NLS-1$

	/** <code>SARFILE_VERSION</code> */
	int SARFILE_VERSION = 2;

	/**
	 * Comment for <code>DEFAULT_ENCODING</code>
	 */
	String DEFAULT_ENCODING = "UTF-8"; //$NON-NLS-1$

	/**
	 * Debug
	 */
	boolean DEBUG = false;
}

Back to the top