blob: ae9a9d63d9595dc95653b1fcdbf60ec3b6a3d74e [file] [log] [blame]
/*
* Copyright (c) 2006 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 - initial API and implementation
*
* $Id: XMI2UMLLoadImpl.java,v 1.1 2006/04/26 15:48:53 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.resource;
import org.eclipse.emf.ecore.xmi.XMLHelper;
import org.xml.sax.helpers.DefaultHandler;
public class XMI2UMLLoadImpl
extends UMLLoadImpl {
public XMI2UMLLoadImpl(XMLHelper helper) {
super(helper);
}
protected DefaultHandler makeDefaultHandler() {
return new XMI2UMLHandler(resource, helper, options);
}
}