Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c27f3ee2c469fab422e8309e36b57c3794a5fad2 (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
/*******************************************************************************
 * Copyright (c) 2008, 2017 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: IBM Corporation - initial API and implementation
 ******************************************************************************/
package org.eclipse.equinox.internal.frameworkadmin.equinox;

import java.io.File;
import org.eclipse.equinox.internal.provisional.frameworkadmin.LauncherData;

public class EquinoxLauncherData extends LauncherData {
	File previousLauncher = null;

	public EquinoxLauncherData(String fwName, String fwVersion, String launcherName, String launcherVersion) {
		super(fwName, fwVersion, launcherName, launcherVersion);
	}

	@Override
	public void setLauncher(File launcherFile) {
		if (previousLauncher == null && launcherFile != null && !launcherFile.equals(getLauncher()))
			previousLauncher = EquinoxManipulatorImpl.getLauncherConfigLocation(this);
		super.setLauncher(launcherFile);
	}

	File getPreviousLauncherIni() {
		return previousLauncher;
	}
}

Back to the top