public interface MultipleCDockableLayout
MultipleCDockable
.
This layout should not have any references to the MultipleCDockable
it describes.Modifier and Type | Method and Description |
---|---|
void |
readStream(java.io.DataInputStream in)
Reads the content of this layout from
out . |
void |
readXML(XElement element)
Reads the content of this layout from
element . |
void |
writeStream(java.io.DataOutputStream out)
Writes the content of this layout into
out . |
void |
writeXML(XElement element)
Writes the content of this layout into
element . |
void writeStream(java.io.DataOutputStream out) throws java.io.IOException
out
.out
- the stream to write intojava.io.IOException
- if an I/O-error occursvoid readStream(java.io.DataInputStream in) throws java.io.IOException
out
. All
properties should be set to their default value or to the value read
from the stream.in
- the stream to readjava.io.IOException
- if an I/O-error occursvoid writeXML(XElement element)
element
.element
- the xml element into which this method can write,
the attributes of element
should not be changedvoid readXML(XElement element)
element
. All
properties should be set to their default value or to the value
read from element
. This method can assume that the xml-element
was written by another layout of the same type, and that no attributes or
elements have been deleted or altered by DockingFrames itself.element
- the element to read