Package ghidra.app.util.bin.format
Interface Writeable
-
- All Known Implementing Classes:
DOSHeader,ElfHeader,ElfProgramHeader,ElfSectionHeader,RichHeader
public interface WriteableAn interface for writing out class state information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwrite(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.IOExceptionWrites 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
-
-