1 19 package org.netbeans.api.mdr; 20 21 import javax.jmi.reflect.*; 22 import org.netbeans.api.mdr.events.MDRChangeSource; 23 24 29 public interface MDRepository extends MDRChangeSource { 30 35 public RefPackage createExtent(String substName) throws CreationFailedException; 36 37 46 public RefPackage createExtent(String substName, RefObject metaPackage) throws CreationFailedException; 47 48 59 public RefPackage createExtent(String substName, RefObject metaPackage, RefPackage existingInstances[]) throws CreationFailedException; 60 61 65 public RefPackage getExtent(String name); 66 67 70 public String [] getExtentNames(); 71 72 80 public RefBaseObject getByMofId(String mofId); 81 82 110 public void beginTrans(boolean writeAccess); 111 112 116 public void endTrans(); 117 118 132 public void endTrans(boolean rollback); 133 134 138 public void shutdown(); 139 } 140 | Popular Tags |