1 /******************************************************************************* 2 * Copyright (c) 2000, 2005 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 12 package org.eclipse.ui.internal.activities; 13 14 /** 15 * This class allows clients to broker instances of <code>IActivityManager</code>. 16 * <p> 17 * This class is not intended to be extended by clients. 18 * </p> 19 * 20 * @since 3.0 21 */ 22 public final class ActivityManagerFactory { 23 24 /** 25 * Creates a new instance of <code>IMutableActivityManager</code>. 26 * 27 * @return a new instance of <code>IMutableActivityManager</code>. 28 * Clients should not make assumptions about the concrete 29 * implementation outside the contract of the interface. Guaranteed 30 * not to be <code>null</code>. 31 */ 32 public static MutableActivityManager getMutableActivityManager() { 33 return new MutableActivityManager(); 34 } 35 36 private ActivityManagerFactory() { 37 } 38 } 39