Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 72989059b3e791cb6e34c627a558f323c470f8a2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                








                                                                                 
                                                            
 


                                                                                                       

                                                                             
                                                                                                                                    
                                                                                                          
                                      
                                                        
                                                         

         
/*******************************************************************************
 * Copyright (c) 2007, 2008 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 org.eclipse.equinox.internal.provisional.configuratormanipulator.ConfiguratorManipulatorFactory;
import org.eclipse.equinox.internal.provisional.frameworkadmin.FrameworkAdmin;
import org.eclipse.equinox.internal.provisional.frameworkadmin.FrameworkAdminFactory;

public class EquinoxFrameworkAdminFactoryImpl extends FrameworkAdminFactory {
	public FrameworkAdmin createFrameworkAdmin() throws InstantiationException, IllegalAccessException, ClassNotFoundException {
		String className = System.getProperty(ConfiguratorManipulatorFactory.SYSTEM_PROPERTY_KEY);
		if (className == null)
			return new EquinoxFwAdminImpl();
		return new EquinoxFwAdminImpl(className);
	}
}

Back to the top