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