1 19 package org.netbeans.api.xmi; 20 21 import javax.jmi.reflect.RefObject; 22 23 33 public interface XMIReferenceProvider { 34 46 public XMIReference getReference(RefObject object); 47 48 51 public static final class XMIReference { 52 private final String systemId; 53 private final String xmiId; 54 55 59 public XMIReference(String systemId, String xmiId) { 60 this.systemId = systemId; 61 this.xmiId = xmiId; 62 } 63 64 70 public String getSystemId() { 71 return systemId; 72 } 73 74 77 public String getXmiId() { 78 return xmiId; 79 } 80 } 81 } 82 | Popular Tags |