Package no.hal.jex.xml

Source Code of no.hal.jex.xml.JexXmlResource

package no.hal.jex.xml;

import no.hal.jex.resource.JexXmlHelper;

import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.xmi.XMLHelper;
import org.eclipse.emf.ecore.xmi.XMLSave;
import org.eclipse.emf.ecore.xmi.impl.XMIResourceImpl;

public class JexXmlResource extends XMIResourceImpl {

  public final static String JEXERCISE_METADATA = "http:///no/hal/jex/JexMetaData";

  public JexXmlResource() {
    super();
  }

  public JexXmlResource(URI uri) {
    super(uri);
  }

  @Override
  protected XMLSave createXMLSave() {
    return new JexXmlSaveImpl(createXMLHelper());
  }

  @Override
  protected XMLHelper createXMLHelper() {
    return new JexXmlHelper(this);
  }
}
TOP

Related Classes of no.hal.jex.xml.JexXmlResource

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.