Interface IWritableTag

    • Field Summary

      • Fields inherited from interface org.eclipse.cdt.core.dom.ast.tag.ITag

        FAIL
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean putByte​(int offset, byte data)
      Writes the given byte to the given offset in the tag.
      boolean putBytes​(int offset, byte[] data, int len)
      Writes the argument buffer into the receiver's payload starting at the specified offset.
    • Method Detail

      • putByte

        boolean putByte​(int offset,
                        byte data)
        Writes the given byte to the given offset in the tag. Returns true if successful.
      • putBytes

        boolean putBytes​(int offset,
                         byte[] data,
                         int len)
        Writes the argument buffer into the receiver's payload starting at the specified offset. Writes the specified number of bytes or the full buffer when len is -1. Returns true if successful.