public DebugObjectStorePeer(final AliasRegistry aliasesRegistry, final CellBinding... cellBindings) {
super(aliasesRegistry, cellBindings);
}
public String debugObjectStore() {
final ObjectStorePersistence objectStore = getObjectStore();
final DebugString debug = new DebugString();
objectStore.debugData(debug);
return debug.toString().replaceAll("\n", "<br>");
}