8 lines
183 B
Java
8 lines
183 B
Java
package org.hsqldb.persist;
|
|
|
|
public interface PersistentStoreCollection {
|
|
PersistentStore getStore(Object obj);
|
|
|
|
void setStore(Object obj, PersistentStore persistentStore);
|
|
}
|