489 const char* spacename = properties->getNamespace();
490 const char*
id = properties->getId();
493 for(i=0; i<indent*2;i++)
497 log(
"%sNamespace: %s ID: %s\n%s{", chindent, spacename,
id, chindent);
500 const char* name = properties->getNextProperty();
501 const char* value = NULL;
504 value = properties->getString(name);
505 log(
"%s%s = %s", chindent, name, value);
506 name = properties->getNextProperty();
509 Properties* space = properties->getNextNamespace();
510 while (space != NULL)
513 space = properties->getNextNamespace();
516 log(
"%s}\n",chindent);
static void printProperties(Properties *properties, int indent)