Package ch.astorm.jotlmsg.io
Class MessagePropertiesChunk
- java.lang.Object
-
- ch.astorm.jotlmsg.io.PropertiesChunk
-
- ch.astorm.jotlmsg.io.MessagePropertiesChunk
-
public class MessagePropertiesChunk extends PropertiesChunk
Handles the top level layout in a.msgfile. This class has been mostly copied fromMessagePropertiesChunk.- Author:
- Cedric Tabin
-
-
Field Summary
-
Fields inherited from class ch.astorm.jotlmsg.io.PropertiesChunk
FLAG_READABLE, FLAG_WRITEABLE, PREFIX
-
-
Constructor Summary
Constructors Constructor Description MessagePropertiesChunk()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetAttachmentCount()longgetNextAttachmentId()longgetNextRecipientId()longgetRecipientCount()voidsetAttachmentCount(long attachmentCount)voidsetNextAttachmentId(long nextAttachmentId)voidsetNextRecipientId(long nextRecipientId)voidsetRecipientCount(long recipientCount)-
Methods inherited from class ch.astorm.jotlmsg.io.PropertiesChunk
getProperty, setProperty, writeTo
-
-
-
-
Method Detail
-
getNextRecipientId
public long getNextRecipientId()
-
setNextRecipientId
public void setNextRecipientId(long nextRecipientId)
-
getNextAttachmentId
public long getNextAttachmentId()
-
setNextAttachmentId
public void setNextAttachmentId(long nextAttachmentId)
-
getRecipientCount
public long getRecipientCount()
-
setRecipientCount
public void setRecipientCount(long recipientCount)
-
getAttachmentCount
public long getAttachmentCount()
-
setAttachmentCount
public void setAttachmentCount(long attachmentCount)
-
-