コード例 #1
0
 public Object convertWasGeneratedBy(
     Object id, List<Object> tAttrs, List<Object> otherAttrs, Object entity, Object activity) {
   List tAttrs2 = convertTypeAttributes(tAttrs);
   // List otherAttrs2=convertAttributes(otherAttrs);
   List attrs = new LinkedList();
   attrs.addAll(tAttrs2);
   attrs.addAll(otherAttrs);
   return c.convertWasGeneratedBy(
       id,
       entity,
       activity,
       null, // time
       c.convertAttributes(attrs));
 }