1 19 package org.netbeans.api.xmi; 20 21 import java.util.Collection ; 22 import javax.jmi.reflect.RefObject; 23 import javax.jmi.reflect.RefPackage; 24 import javax.jmi.xmi.XmiReader; 25 import javax.jmi.xmi.MalformedXMIException; 26 import java.io.InputStream ; 27 import java.io.IOException ; 28 29 34 public abstract class XMIReader implements XmiReader { 35 39 42 public abstract XMIInputConfig getConfiguration(); 43 44 48 61 public abstract Collection read(InputStream stream, String URI, RefPackage extent) throws IOException , MalformedXMIException; 62 63 71 public abstract Collection read(String URI, RefPackage extent) throws IOException , MalformedXMIException; 72 } 73 | Popular Tags |