Package ghidra.app.util.bin.format
Interface Writeable
-
- All Known Implementing Classes:
DOSHeader
,ElfHeader
,ElfProgramHeader
,ElfSectionHeader
,RichHeader
public interface Writeable
An interface for writing out class state information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
write(java.io.RandomAccessFile raf, DataConverter dc)
Writes this object to the specified random access file using the data converter to handle endianness.
-
-
-
Method Detail
-
write
void write(java.io.RandomAccessFile raf, DataConverter dc) throws java.io.IOException
Writes this object to the specified random access file using the data converter to handle endianness.- Parameters:
raf
- the random access filedc
- the data converter- Throws:
java.io.IOException
- if an I/O error occurs
-
-