bibliothek.gui.dock.common.MultipleCDockableLayout Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docking-frames-common Show documentation
Show all versions of docking-frames-common Show documentation
DockingFrames is an open source Java Swing docking framework, licenced under LGPL 2.1.
This is the same distribution as the original distribution (http://www.docking-frames.org/), only reinstalled in maven
/*
* Bibliothek - DockingFrames
* Library built on Java/Swing, allows the user to "drag and drop"
* panels containing any Swing-Component the developer likes to add.
*
* Copyright (C) 2007 Benjamin Sigg
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Benjamin Sigg
* [email protected]
* CH - Switzerland
*/
package bibliothek.gui.dock.common;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import bibliothek.util.xml.XElement;
/**
* An intermediate representation of the layout of a {@link MultipleCDockable}.
* This layout should not have any references to the {@link MultipleCDockable}
* it describes.
* @author Benjamin Sigg
*/
public interface MultipleCDockableLayout {
/**
* Writes the content of this layout into out
.
* @param out the stream to write into
* @throws IOException if an I/O-error occurs
*/
public void writeStream( DataOutputStream out ) throws IOException;
/**
* Reads the content of this layout from out
. All
* properties should be set to their default value or to the value read
* from the stream.
* @param in the stream to read
* @throws IOException if an I/O-error occurs
*/
public void readStream( DataInputStream in ) throws IOException;
/**
* Writes the content of this layout into element
.
* @param element the xml element into which this method can write,
* the attributes of element
should not be changed
*/
public void writeXML( XElement element );
/**
* Reads the content of this layout from 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.
* @param element the element to read
*/
public void readXML( XElement element );
}