blob: 94bf4dc7a5fa35f829590c2cf5866ad3e437f052 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.runtime.adaptor.testsupport;
import java.io.File;
import org.eclipse.osgi.internal.resolver.StateManager;
public class SimplePlatformAdmin extends StateManager {
public SimplePlatformAdmin(File bundleRootDir) {
super(bundleRootDir);
createSystemState();
setInstaller(new SimpleBundleInstaller(getSystemState()));
}
}