blob: 86e321403a877b4a746c3a4a413647b8dc9c59eb [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2008-2013 itemis 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:
* itemis - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.sphinx.examples.uml2.ide.internal;
import org.eclipse.emf.ecore.xmi.XMLHelper;
import org.eclipse.uml2.uml.internal.resource.UMLLoadImpl;
import org.xml.sax.helpers.DefaultHandler;
@SuppressWarnings("restriction")
public class ExtendedUMLLoadImpl extends UMLLoadImpl {
public ExtendedUMLLoadImpl(XMLHelper helper) {
super(helper);
}
/*
* @see org.eclipse.sphinx.emf.resource.ExtendedXMLLoadImpl#makeDefaultHandler()
*/
@Override
protected DefaultHandler makeDefaultHandler() {
return new ExtendedUMLHandler(resource, helper, options);
}
}