blob: 9caee2dcd21467fd7e18274ed005819832e94f0b [file] [log] [blame]
/*
* Copyright (c) 2007 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:
* Kenn Hussey (IBM Corporation) - initial API and implementation
*
* $Id: CMOF2UMLLoadImpl.java,v 1.1 2007/09/04 15:28:48 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.resource;
import org.eclipse.emf.ecore.xmi.XMLHelper;
import org.xml.sax.helpers.DefaultHandler;
public class CMOF2UMLLoadImpl
extends UMLLoadImpl {
public CMOF2UMLLoadImpl(XMLHelper helper) {
super(helper);
}
@Override
protected DefaultHandler makeDefaultHandler() {
return new CMOF2UMLHandler(resource, helper, options);
}
}