public FSTClazzNameRegistry(FSTClazzNameRegistry par, FSTConfiguration conf) {
parent = par;
this.conf = conf;
if ( parent != null ) {
classIdCount = parent.classIdCount+1;
clzToId = new FSTIdentity2IdMap(13);
idToClz = new FSTClazzInfo[classIdCount*2];
} else {
clzToId = new FSTIdentity2IdMap(FSTObject2IntMap.adjustSize(400));
idToClz = new FSTClazzInfo[200];
}
}