blob: 37437d100b61bb1ec5e06f9944bc7e6f1408ab2b [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Dynamic Runtime Environment"
*
* Copyright 2009, 2012 Oliver Frank and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0 *
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Oliver Frank - Initial API and implementation
* Stephan Herrmann - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otredyn.bytecode;
/**
* Provides a singleton instance of {@link IRedefineStrategy}.
* If no instance was set, this class returns the {@link OtreRedefineStrategy}
* @author Oliver Frank
*/
public class RedefineStrategyFactory {
private static IRedefineStrategy redefineStrategy;
public static IRedefineStrategy getRedefineStrategy() {
if (redefineStrategy == null) {
redefineStrategy = new OtreRedefineStrategy();
}
return redefineStrategy;
}
public static void setRedefineStrategy(IRedefineStrategy redefineStrategy) {
RedefineStrategyFactory.redefineStrategy = redefineStrategy;
}
}