示例#1
0
 public void setValue(String key, String value) {
   SimpleSet<String> set = childProperties.get(key);
   if (set != null) {
     for (String ChildKey : set) {
       int pos = getEntityPos(ChildKey);
       if (pos >= 0) {
         Object entity = stack.getKeyByIndex(pos);
         SendableEntityCreator creator = stack.getValueByIndex(pos);
         creator.setValue(entity, ChildKey, value, IdMap.NEW);
       }
     }
   }
 }