public class DefaultComponentFactory extends Object implements IComponentFactory
getInstance() method.| Modifier | Constructor and Description |
|---|---|
protected |
DefaultComponentFactory()
Constructs a component factory (protected due to singleton pattern).
|
| Modifier and Type | Method and Description |
|---|---|
Dateline |
createDateline(Timeline timeline)
Creates a new
Dateline for the given Gantt chart and timeline. |
Eventline |
createEventline(Timeline timeline,
Dateline dateline)
Creates a new
Eventline for the given Gantt chart and timeline. |
LayerContainer |
createLayerContainer(AbstractGanttChart gc,
TreeTable table,
IGanttChartModel model)
Creates a
LayerContainer for the given Gantt chart and tree table
combination. |
JComponent |
createLayerContainerCorner(LayerContainer lc,
String corner)
Creates a new component that will be placed in the specified corner of
the layer container scrollpane.
|
LayerContainerRowHeader |
createLayerContainerRowHeader(LayerContainer lc)
Creates a new
LayerContainerRowHeader that will be used for the
given layer container. |
LayerContainerScrollPane |
createLayerContainerScrollPane(LayerContainer lc,
LayerContainerRowHeader rowHeader,
Timeline timeline,
boolean primary)
Returns the scrollpane used for the given layer container.
|
JSplitPane |
createSplitPane()
Creates the splitpane used by the Gantt chart for changing the sizes of
the left-hand side and the right-hand side.
|
Timeline |
createTimeline(AbstractGanttChart gc)
Creates a new
Timeline for the given Gantt chart. |
TreeTable |
createTreeTable(AbstractGanttChart gc,
ITreeTableModel model)
Creates a
TreeTable for the given Gantt chart. |
JComponent |
createTreeTableCorner(TreeTable table,
String corner)
Creates a component that will be placed in the upper left corner of the
scrollpane that contains the tree table.
|
TreeTableHeader |
createTreeTableHeader(AbstractGanttChart gc)
Creates a
TreeTableHeader for the given Gantt chart. |
TreeTableRowHeader |
createTreeTableRowHeader(TreeTable table)
Creates a new
TreeTableRowHeader that will be used for the given
tree table. |
TreeTableScrollPane |
createTreeTableScrollPane(TreeTable table,
TreeTableRowHeader rowHeader,
TreeTableHeader header,
boolean primary)
Creates the scrollpane used for scrolling the given tree table.
|
static DefaultComponentFactory |
getInstance()
Returns the singleton instance of the component factory.
|
protected DefaultComponentFactory()
public static DefaultComponentFactory getInstance()
public Timeline createTimeline(AbstractGanttChart gc)
IComponentFactoryTimeline for the given Gantt chart. The timeline
will forward the given time span and time zone to the dateline that it
will also create via the same component factory.createTimeline in interface IComponentFactorygc - the owner Gantt chartIComponentFactory.createDateline(Timeline),
IComponentFactory.createEventline(Timeline, Dateline)public Dateline createDateline(Timeline timeline)
IComponentFactoryDateline for the given Gantt chart and timeline.
The dateline will show times / dates for the given time zone and it will
allow the user to scroll across the given time span.createDateline in interface IComponentFactorytimeline - the parent timelineIComponentFactory.createTimeline(AbstractGanttChart),
IComponentFactory.createEventline(Timeline, Dateline)public Eventline createEventline(Timeline timeline, Dateline dateline)
IComponentFactoryEventline for the given Gantt chart and timeline.
The eventline will show global events and activities.createEventline in interface IComponentFactorytimeline - the parent timelinedateline - the dateline that is used in the same timelineIComponentFactory.createDateline(Timeline),
IComponentFactory.createTimeline(AbstractGanttChart)public TreeTable createTreeTable(AbstractGanttChart gc, ITreeTableModel model)
IComponentFactoryTreeTable for the given Gantt chart. The table can use
the given model to populate itself with date.createTreeTable in interface IComponentFactorygc - the owner Gantt chart / parent container of the tablemodel - the date source for the tablepublic TreeTableHeader createTreeTableHeader(AbstractGanttChart gc)
IComponentFactoryTreeTableHeader for the given Gantt chart. A Gantt
chart only uses a single column header even if it displays more than one
table at a time.createTreeTableHeader in interface IComponentFactorygc - the owner Gantt chart of the headerAbstractGanttChart.getTreeTableHeader()public TreeTableRowHeader createTreeTableRowHeader(TreeTable table)
IComponentFactoryTreeTableRowHeader that will be used for the given
tree table. Row headers display toggles for expanding/collapsing tree
nodes and also row numbers / outline numbers for each row.createTreeTableRowHeader in interface IComponentFactorytable - the tree table that uses the row header for visualizing row
numberspublic JComponent createTreeTableCorner(TreeTable table, String corner)
IComponentFactorycreateTreeTableCorner in interface IComponentFactorytable - the table that is wrapped by the scrollpanecorner - the corner where the component will be placed (UPPER_LEFT,
UPPER_RIGHT, LOWER_LEFT, LOWER_RIGHT)TreeTableScrollPane,
JScrollPane.setCorner(String, java.awt.Component)public LayerContainer createLayerContainer(AbstractGanttChart gc, TreeTable table, IGanttChartModel model)
IComponentFactoryLayerContainer for the given Gantt chart and tree table
combination. The layer container can utilize the given Gantt chart model
to determine how many layers and spreadsheets it has to add to itself.createLayerContainer in interface IComponentFactorygc - the owner Gantt chart of the layer containertable - the table to the left of the layer containermodel - the model represented by the layer containerpublic JComponent createLayerContainerCorner(LayerContainer lc, String corner)
IComponentFactorycreateLayerContainerCorner in interface IComponentFactorylc - the layer containercorner - the corner in which to place the component (UPPER_LEFT,
UPPER_RIGHT, LOWER_LEFT, LOWER_RIGHT)NavigationControlPanelpublic LayerContainerRowHeader createLayerContainerRowHeader(LayerContainer lc)
IComponentFactoryLayerContainerRowHeader that will be used for the
given layer container. Layer container row headers can be used for things
like the display of a scale for a resource capacity.createLayerContainerRowHeader in interface IComponentFactorylc - the layer container that uses the row header for things like
capacity scalespublic LayerContainerScrollPane createLayerContainerScrollPane(LayerContainer lc, LayerContainerRowHeader rowHeader, Timeline timeline, boolean primary)
IComponentFactorycreateLayerContainerScrollPane in interface IComponentFactorylc - the "view" of the scrollpanerowHeader - the row header component (e.g. for showing capacity numbers)timeline - the timeline component shown above the viewprimary - a flag used to signal the top-most layer containerpublic TreeTableScrollPane createTreeTableScrollPane(TreeTable table, TreeTableRowHeader rowHeader, TreeTableHeader header, boolean primary)
IComponentFactorycreateTreeTableScrollPane in interface IComponentFactorytable - the "view" of the scrollpanerowHeader - the row header component (e.g. for showing row numbers)header - the tree table header (column names)primary - flag used for the top-most tree tablepublic JSplitPane createSplitPane()
IComponentFactorycreateSplitPane in interface IComponentFactoryCopyright © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.