|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectbibliothek.gui.dock.common.intern.CommonMultipleDockableFactory
public class CommonMultipleDockableFactory
A factory used to create CommonDockables. This factory is only
used to create MultipleCDockables because SingleCDockables
are stored by the client.
| Constructor Summary | |
|---|---|
CommonMultipleDockableFactory(String id,
MultipleCDockableFactory<?,?> delegate,
CControlAccess access)
Creates a new factory. |
|
CommonMultipleDockableFactory(String id,
MultipleCDockableFactory<?,?> delegate,
CControlAccess access,
CPerspective perspective)
Creates a new factory. |
|
| Method Summary | |
|---|---|
void |
estimateLocations(CommonMultipleDockableLayout layout,
LocationEstimationMap children)
Tries to estimate the DockablePropertys of the children of the
station which is represented by layout.The children of this station are accessible through children.getChild( ... |
MultipleCDockableFactory<?,?> |
getFactory()
Gets the delegate of this factory. |
String |
getID()
Gets the unique name of this converter. |
CommonMultipleDockableLayout |
getLayout(CommonDockable element,
Map<Dockable,Integer> children)
Gets the layout of element. |
CommonMultipleDockableLayout |
getPerspectiveLayout(CommonElementPerspective element,
Map<PerspectiveDockable,Integer> children)
Gets the layout information that is associated with element. |
CommonDockable |
layout(CommonMultipleDockableLayout layout,
Map<Integer,Dockable> children,
PlaceholderStrategy placeholders)
Creates a new DockElement and changes the layout of the new
element such that is matches layout. |
CommonDockable |
layout(CommonMultipleDockableLayout layout,
PlaceholderStrategy placeholders)
Creates a new DockElement and changes the layout of the new
element such that is matches layout. |
void |
layoutPerspective(CommonElementPerspective perspective,
CommonMultipleDockableLayout layout,
Map<Integer,PerspectiveDockable> children)
Updates the contents of perspective such that it reflects the contents of layout. |
CommonElementPerspective |
layoutPerspective(CommonMultipleDockableLayout layout,
Map<Integer,PerspectiveDockable> children)
Creates an element that can be used by a Perspective to create a layout
without creating any DockElements. |
CommonMultipleDockableLayout |
read(DataInputStream in,
PlaceholderStrategy placeholders)
Reads a layout from a stream. |
CommonMultipleDockableLayout |
read(XElement element,
PlaceholderStrategy placeholders)
Reads a layout from an xml-element. |
void |
setLayout(CommonDockable element,
CommonMultipleDockableLayout layout,
Map<Integer,Dockable> children,
PlaceholderStrategy placeholders)
Reads the contents of layout and changes the layout of
element accordingly. |
void |
setLayout(CommonDockable element,
CommonMultipleDockableLayout layout,
PlaceholderStrategy placeholders)
Reads the contents of layout and changes the layout of
element accordingly. |
void |
write(CommonMultipleDockableLayout layout,
DataOutputStream out)
Writes the contents of layout into out. |
void |
write(CommonMultipleDockableLayout 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 |
| Constructor Detail |
|---|
public CommonMultipleDockableFactory(String id,
MultipleCDockableFactory<?,?> delegate,
CControlAccess access)
id - the identifier of this factorydelegate - the factory that should be used to load the contents of the
new CommonDockableaccess - access to the internal affairs of a CControl
public CommonMultipleDockableFactory(String id,
MultipleCDockableFactory<?,?> delegate,
CControlAccess access,
CPerspective perspective)
id - the identifier of this factorydelegate - the factory that should be used to load the contents of the
new CommonDockableaccess - access to the internal affairs of a CControlperspective - the CPerspective for which this factory is going to read and write elements| Method Detail |
|---|
public String getID()
DockConverter
getID in interface DockConverter<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>public MultipleCDockableFactory<?,?> getFactory()
null
public void estimateLocations(CommonMultipleDockableLayout 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<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>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 CommonMultipleDockableLayout getLayout(CommonDockable 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<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>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 CommonMultipleDockableLayout getPerspectiveLayout(CommonElementPerspective element,
Map<PerspectiveDockable,Integer> children)
DockConverterelement.
The layout information can be any Object. The only restriction
of the object is, that the associated DockFactory understands
how to read that object.
getPerspectiveLayout in interface DockConverter<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>element - the element whose layout information is asked.children - a map providing identifiers for the children of this element. The
identifiers are in the range from 0 (incl.) to children.size() (excl.),
the exact same identifiers would be given to DockConverter.getLayout(bibliothek.gui.dock.DockElement, Map).
Is null if the children of this station should be ignored.
null if this converter does not support perspectives
public void layoutPerspective(CommonElementPerspective perspective,
CommonMultipleDockableLayout layout,
Map<Integer,PerspectiveDockable> children)
DockFactoryperspective such that it reflects the contents of layout.
layoutPerspective in interface DockFactory<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>perspective - the perspective that is to be updatedlayout - the layout to applychildren - the new children of perspective, is null if the children of this
station are going to be ignored.
public CommonElementPerspective layoutPerspective(CommonMultipleDockableLayout layout,
Map<Integer,PerspectiveDockable> children)
DockFactoryPerspective to create a layout
without creating any DockElements. This method may return null only
if the client is guaranteed not to use a Perspective.
layoutPerspective in interface DockFactory<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>layout - the new layoutchildren - some children, note that the map may not contain all elements
which were present when the layout was created. Is null if the children of this
station are going to be ignored.
null, the return value of PerspectiveElement.getFactoryID() should
be equal to DockConverter.getID()
public CommonDockable layout(CommonMultipleDockableLayout layout,
Map<Integer,Dockable> children,
PlaceholderStrategy placeholders)
DockFactoryDockElement and changes the layout of the new
element such that is matches layout.
layout in interface DockFactory<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>layout - the new layoutchildren - some children, note that the map may not contain all elements
which were present when the layout was created.placeholders - a strategy to detect invalid placeholders, can be null.
Factories loading only Dockables but no DockStations can safely ignore this argument.
null if layout can't be used
public CommonDockable layout(CommonMultipleDockableLayout layout,
PlaceholderStrategy placeholders)
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<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>layout - the new layoutplaceholders - a strategy to detect invalid placeholders, can be null.
Factories loading only Dockables but no DockStations can safely ignore this argument.
null if layout can't be used
public void setLayout(CommonDockable element,
CommonMultipleDockableLayout layout,
Map<Integer,Dockable> children,
PlaceholderStrategy placeholders)
DockConverterlayout and changes the layout of
element accordingly. This method should remove all
children from element and add new children.
setLayout in interface DockConverter<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>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.placeholders - a strategy to detect invalid placeholders, can be null.
Factories loading only Dockables but no DockStations can safely ignore this argument.
public void setLayout(CommonDockable element,
CommonMultipleDockableLayout layout,
PlaceholderStrategy placeholders)
DockConverterlayout and changes the layout of
element accordingly. This method should not add or remove
children to or from element.
setLayout in interface DockConverter<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>element - the element whose properties will be changedlayout - the new set of propertiesplaceholders - a strategy to detect invalid placeholders, can be null.
Factories loading only Dockables but no DockStations can safely ignore this argument.
public CommonMultipleDockableLayout read(DataInputStream in,
PlaceholderStrategy placeholders)
throws IOException
DockConverter
read in interface DockConverter<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>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 CommonMultipleDockableLayout read(XElement element,
PlaceholderStrategy placeholders)
DockConverter
read in interface DockConverter<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>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(CommonMultipleDockableLayout layout,
DataOutputStream out)
throws IOException
DockConverterlayout into out.
write in interface DockConverter<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>layout - the layout to storeout - the stream to write into
IOException - if an I/O-error occurs
public void write(CommonMultipleDockableLayout layout,
XElement element)
DockConverterlayout into element.
write in interface DockConverter<CommonDockable,CommonElementPerspective,CommonMultipleDockableLayout>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 | |||||||||