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