Schnittstelle Activity

Alle bekannten Unterschnittstellen:
CalendarActivity, ChartActivity, CompletableActivity, HighLowChartActivity, MutableActivity, MutableChartActivity, MutableCompletableActivity, MutableHighLowChartActivity
Alle bekannten Implementierungsklassen:
ActivityBase, ActivityLink, CalendarActivityBase, ChartActivityBase, CompletableActivityBase, HighLowChartActivityBase, MutableActivityBase, MutableCalendarActivityBase, MutableChartActivityBase, MutableCompletableActivityBase, MutableHighLowChartActivityBase, WeekendCalendarActivity

public interface Activity
Activities represent objects that will be displayed below the timeline in the graphics view of the Gantt chart control. Activities can be added to a specific layer on a row by calling Row.addActivity(Layer, Activity).
Seit:
1.0
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    The end time of the activity.
    The unique id of the activity.
    The name of the activity, for example "Flight 3441".
    The start time of the activity.
  • Methodendetails

    • getName

      String getName()
      The name of the activity, for example "Flight 3441".
      Gibt zurück:
      the name of the activity
      Seit:
      1.0
    • getId

      String getId()
      The unique id of the activity.
      Gibt zurück:
      the unique activity ID
      Seit:
      1.0
    • getStartTime

      Instant getStartTime()
      The start time of the activity.
      Gibt zurück:
      the activity start time
      Seit:
      1.0
    • getEndTime

      Instant getEndTime()
      The end time of the activity.
      Gibt zurück:
      the activity end time
      Seit:
      1.0