blob: 3a48bdac6c5cfd98d49b197fbe43d8cfd21eac65 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.ptp.debug.sdm.core;
import org.eclipse.ptp.debug.core.pdi.IPDISession;
import org.eclipse.ptp.debug.core.pdi.manager.AbstractManagerFactory;
import org.eclipse.ptp.debug.core.pdi.manager.IPDIEventManager;
public class SDMManagerFactory extends AbstractManagerFactory {
/* (non-Javadoc)
* @see org.eclipse.ptp.debug.core.pdi.manager.IPDIManagerFactory#newEventManager(org.eclipse.ptp.debug.core.pdi.IPDISession)
*/
public IPDIEventManager newEventManager(IPDISession session) {
return new SDMEventManager(session);
}
}