Beispiel #1
0
 private String calculatePathByDeepestNode(final PortfolioStructure pStruct) {
   final StringBuffer path = new StringBuffer();
   PortfolioStructure ps = pStruct;
   while (ps.getRootMap() != null) {
     path.insert(0, "/" + ps.getKey().toString());
     ps = ps.getRoot();
   }
   return path.toString();
 }