blob: 14f0b7654235f18e0e86e94d2d4ba40ccc301154 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.javaee.core;
import org.eclipse.emf.ecore.xmi.XMLHelper;
import org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl;
import org.xml.sax.helpers.DefaultHandler;
public class JEEXMLLoadImpl extends XMLLoadImpl {
protected DefaultHandler makeDefaultHandler() {
return new JEESAXXMLHandler(resource, helper, options);
}
public JEEXMLLoadImpl(XMLHelper helper) {
super(helper);
}
}