Klasse ContainerBase<T extends GanttChartBase<?>>

Alle implementierten Schnittstellen:
Styleable, EventTarget, Skinnable
Bekannte direkte Unterklassen:
DualGanttChartContainerBase, MultiGanttChartContainerBase, QuadGanttChartContainerBase

public abstract class ContainerBase<T extends GanttChartBase<?>> extends FlexGanttFXControl
A common base class for containers that wrap two or more Gantt charts. Containers are used to keep two the charts synchronized. Synchronized elements are the location of the dividers between the tree table and the graphics area, the timeline state (start time, zoom level, etc...), cursors, etc...
Seit:
1.6
  • Konstruktordetails

    • ContainerBase

      @SafeVarargs protected ContainerBase(boolean autoBinding, T... ganttCharts)
      Constructs a new container with the given Gantt chart controls.
      Parameter:
      autoBinding - if true, many properties of the given controls will be bound to their equivalent of the Gantt chart on the first position
      ganttCharts - the Gantt charts to add to this container
      Seit:
      1.6
    • ContainerBase

      @SafeVarargs public ContainerBase(T... ganttCharts)
      Constructs a new container with the given Gantt chart controls. The properties of the charts will be bound to the same properties of the Gantt chart in the first position.
      Parameter:
      ganttCharts - the Gantt charts to add to this container
      Seit:
      1.6
    • ContainerBase

      public ContainerBase(boolean autoBinding)
      Constructs a new empty container. Gantt charts must be added to the list returned by getGanttCharts().
      Parameter:
      autoBinding - if true, many properties of the given controls will be bound to their equivalent of the Gantt chart on the first position
      Seit:
      1.6
    • ContainerBase

      public ContainerBase()
      Constructs a new container. Gantt charts must be added to the list returned by getGanttCharts().The properties of the charts will be bound to the same properties of the Gantt chart on the first position.
      Seit:
      1.6
  • Methodendetails

    • isAutoBinding

      public final boolean isAutoBinding()
      Determines if the container performs auto-binding of the Gantt chart properties. Auto-binding means that the properties of all charts will be kept in sync.
      Gibt zurück:
      true if the container is performing auto-binding
      Seit:
      1.6
    • getGanttCharts

      public final ObservableList<T> getGanttCharts()
      Returns the list of Gantt charts that are being managed by the container.
      Gibt zurück:
      the list of Gantt chart controls
      Seit:
      1.6