Пример #1
0
  public static final void capture(IData pipeline) throws ServiceException {
    // --- <<IS-START(capture)>> ---
    // @subtype unknown
    // @sigtype java 3.5
    // [o] record:0:required $pipeline
    IDataCursor cursor = pipeline.getCursor();

    try {
      IDataUtil.put(cursor, "$pipeline", IDataUtil.clone(pipeline));
    } finally {
      cursor.destroy();
    }
    // --- <<IS-END>> ---

  }