* ::Rase the nModels in MOHD!
* @param text
* @return file index of the new string
*/
public int addString(String text) {
ZeroPaddedString tmp[] = new ZeroPaddedString[length+1];
int[] indices = new int[length+1];
if(length!=0)
for(int c=0; c<length; c++){
tmp[c] = entrys[c];
indices[c] = index[c];
}
indices[length]=buff.position()-8;
/*int temp=0;
if((text.length()%16)!=0)
temp= 16-(text.length()%16);*/
tmp[length] = new ZeroPaddedString(text);
//}
entrys = tmp;
index=indices;
length++;
size+=text.length()+1;