1 17 package org.eclipse.emf.mapping.ecore2xml.util; 18 19 import org.eclipse.emf.ecore.resource.Resource; 20 import org.eclipse.emf.ecore.xmi.XMIResource; 21 22 25 public interface Ecore2XMLResource extends XMIResource 26 { 27 28 31 public interface Factory extends Resource.Factory 32 { 33 34 public static final Factory INSTANCE = new Ecore2XMLResourceFactoryImpl(); 35 36 } 37 38 public static final String FILE_EXTENSION = "ecore2xml"; 40 public static final String DEFAULT_ENCODING = "UTF-8"; 42 } 43 | Popular Tags |