1 23 24 package org.objectweb.jorm.api; 25 26 import java.util.Collection ; 27 import java.util.Set ; 28 29 36 public interface PMapCluster { 37 43 Collection getClusterClasses(); 44 45 50 boolean isDefined(); 51 52 56 Set getUnResolvedDependencies(); 57 58 64 void createMappingStructures(boolean force) throws PException; 65 66 72 void deleteData() throws PException; 73 74 81 void deleteMappingStructures() throws PException; 82 83 89 void start() throws PException; 90 91 95 void stop() throws PException; 96 97 106 void updateMappingStructures() 107 throws PException, UnsupportedOperationException ; 108 109 void classDefined(String jcname); 110 111 115 void addDependency(String jcname); 116 117 118 } 119 | Popular Tags |