|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectbibliothek.gui.dock.dockable.DefaultDockableFactory
public class DefaultDockableFactory
A factory which can read and write the properties of a
DefaultDockable. Note that this factory does not store any
information about the components added to the content pane of the
DefaultDockable.
| Field Summary | |
|---|---|
static String |
ID
The unique id of this factory |
| Constructor Summary | |
|---|---|
DefaultDockableFactory()
creates a new factory |
|
DefaultDockableFactory(String id)
Creates a new factory with the given identifier. |
|
| Method Summary | |
|---|---|
void |
estimateLocations(Object layout,
LocationEstimationMap children)
Tries to estimate the DockablePropertys of the children of the
station which is represented by layout. |
String |
getID()
Gets the unique name of this converter. |
Object |
getLayout(DefaultDockable element,
Map<Dockable,Integer> children)
Gets the layout of element. |
DefaultDockable |
layout(Object layout)
Creates a new DockElement and changes the layout of the new
element such that is matches layout. |
DefaultDockable |
layout(Object layout,
Map<Integer,Dockable> children)
Creates a new DockElement and changes the layout of the new
element such that is matches layout. |
Object |
read(DataInputStream in,
PlaceholderStrategy placeholders)
Reads a layout from a stream. |
Object |
read(XElement element,
PlaceholderStrategy placeholders)
Reads a layout from an xml-element. |
void |
setLayout(DefaultDockable element,
Object layout)
Reads the contents of layout and changes the layout of
element accordingly. |
void |
setLayout(DefaultDockable element,
Object layout,
Map<Integer,Dockable> children)
Reads the contents of layout and changes the layout of
element accordingly. |
void |
write(Object layout,
DataOutputStream out)
Writes the contents of layout into out. |
void |
write(Object layout,
XElement element)
Writes the contents of layout into element. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final String ID
| Constructor Detail |
|---|
public DefaultDockableFactory()
public DefaultDockableFactory(String id)
id - the id of the factory, not null| Method Detail |
|---|
public String getID()
DockConverter
getID in interface DockConverter<DefaultDockable,Object>
public void estimateLocations(Object layout,
LocationEstimationMap children)
DockFactoryDockablePropertys of the children of the
station which is represented by layout.children.getChild( ... ), this
factory may also access the leafs in the tree of Dockables through
children.getSubChild(...).DockableProperty,
it is the callers responsibility to handle chains of stations.
estimateLocations in interface DockFactory<DefaultDockable,Object>layout - this stationchildren - the children of the station, this method should call
DockLayoutInfo.setLocation(DockableProperty) or LocationEstimationMap.setLocation(int, DockableProperty) and
LocationEstimationMap.setLocation(int, int, DockableProperty) for as many children as possible
public Object getLayout(DefaultDockable element,
Map<Dockable,Integer> children)
DockConverterelement. This method should create
a new instance of the layout object, that new object should not be
tied to element in any way. A layout can be living for
a long period of time and might be used on another dockable
object.
getLayout in interface DockConverter<DefaultDockable,Object>element - the element for which a new layout should be createdchildren - a map containing unique identifiers for the children
of the element. Children which are not in this map should not be
stored in the layout.children.size() (excl.). The
same identifiers will be used as indices by a LocationEstimationMap. See
also DockFactory.estimateLocations(Object, LocationEstimationMap).
public void setLayout(DefaultDockable element,
Object layout,
Map<Integer,Dockable> children)
DockConverterlayout and changes the layout of
element accordingly. This method should remove all
children from element and add new children.
setLayout in interface DockConverter<DefaultDockable,Object>element - the element whose content and children will be rearranged.layout - the new layout of elementchildren - some children, note that the map may not contain all elements
which were present when the layout was created.
public void setLayout(DefaultDockable element,
Object layout)
DockConverterlayout and changes the layout of
element accordingly. This method should not add or remove
children to or from element.
setLayout in interface DockConverter<DefaultDockable,Object>element - the element whose properties will be changedlayout - the new set of properties
public DefaultDockable layout(Object layout,
Map<Integer,Dockable> children)
DockFactoryDockElement and changes the layout of the new
element such that is matches layout.
layout in interface DockFactory<DefaultDockable,Object>layout - the new layoutchildren - some children, note that the map may not contain all elements
which were present when the layout was created.
null if layout can't be usedpublic DefaultDockable layout(Object layout)
DockFactoryDockElement and changes the layout of the new
element such that is matches layout. This method should
not add any children to the element.
layout in interface DockFactory<DefaultDockable,Object>layout - the new layout
null if layout can't be used
public Object read(DataInputStream in,
PlaceholderStrategy placeholders)
throws IOException
DockConverter
read in interface DockConverter<DefaultDockable,Object>in - the stream to read fromplaceholders - a strategy to detect invalid placeholders, can be null.
Factories loading only Dockables but no DockStations can safely ignore this argument.
null if the layout
should be discarded
IOException - if an I/O-error occurs
public Object read(XElement element,
PlaceholderStrategy placeholders)
DockConverter
read in interface DockConverter<DefaultDockable,Object>element - the element to read, should not be changed by this
method.placeholders - a strategy to detect invalid placeholders, can be null.
Factories loading only Dockables but no DockStations can safely ignore this argument.
null if the layout
should be discarded
public void write(Object layout,
DataOutputStream out)
throws IOException
DockConverterlayout into out.
write in interface DockConverter<DefaultDockable,Object>layout - the layout to storeout - the stream to write into
IOException - if an I/O-error occurs
public void write(Object layout,
XElement element)
DockConverterlayout into element.
write in interface DockConverter<DefaultDockable,Object>layout - the layout to storeelement - an xml-element into which this method should write, the
attributes of element should not be changed.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||