Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1.7.0)

E12063-08

oracle.adf.view.faces.bi.model
Interface Task

All Known Subinterfaces:
ProjectTask, ScheduleTask

public interface Task

Represents a task in the Gantt.


Method Summary
 java.util.List<Dependency> getDependencies()
          Mandatory if a task has dependents.
 java.util.Date getEndTime()
          Mandatory.
 java.lang.String getIcon1()
          Optional.
 java.lang.String getIcon2()
          Optional.
 java.lang.String getIcon3()
          Optional.
 int getIconAlign()
          Optional.
 java.lang.String getLabel()
          Optional.
 int getLabelAlign()
          Optional.
 java.util.List<RecurringTask> getRecurringTasks()
          Mandatory for recurring tasks.
 java.util.List<SplitTask> getSplitTasks()
          Mandatory for split tasks.
 java.util.Date getStartTime()
          Mandatory.
 java.lang.String getTaskId()
          Mandatory.
 java.lang.String getTaskType()
          Mandatory.
 

Method Detail

getTaskId

java.lang.String getTaskId()
Mandatory. Gets the id of a task.

Returns:
a task id.

getTaskType

java.lang.String getTaskType()
Mandatory. Gets the task type.

Returns:
the task type.
See Also:
oracle.adf.view.faces.bi.component.gantt.GanttConstants.SUMMARY, oracle.adf.view.faces.bi.component.gantt.GanttConstants.NORMAL, oracle.adf.view.faces.bi.component.gantt.GanttConstants.MILESTONE

getStartTime

java.util.Date getStartTime()
Mandatory. Gets the start time of a task.

Returns:
the start time of a task.

getEndTime

java.util.Date getEndTime()
Mandatory. Gets the end time of a task.

Returns:
the end time of a task.

getLabel

java.lang.String getLabel()
Optional. Gets the label of a task.

Returns:
the label of a task.

getIcon1

java.lang.String getIcon1()
Optional. Gets the first icon of a task.

Returns:
a url to an icon.

getIcon2

java.lang.String getIcon2()
Optional. Gets the second icon of a task.

Returns:
a url to an icon.

getIcon3

java.lang.String getIcon3()
Optional. Gets the third icon of a task.

Returns:
a url to an icon.

getLabelAlign

int getLabelAlign()
Optional. Alignment of the label.

Returns:
the alignment of the label.
See Also:
oracle.adf.view.faces.bi.component.gantt.GanttConstants.LEFT, oracle.adf.view.faces.bi.component.gantt.GanttConstants.RIGHT, oracle.adf.view.faces.bi.component.gantt.GanttConstants.INSIDE

getIconAlign

int getIconAlign()
Optional. Alignment of the icons.

Returns:
the alignment of the icons.
See Also:
oracle.adf.view.faces.bi.component.gantt.GanttConstants.LEFT, oracle.adf.view.faces.bi.component.gantt.GanttConstants.RIGHT, oracle.adf.view.faces.bi.component.gantt.GanttConstants.INSIDE

getSplitTasks

java.util.List<SplitTask> getSplitTasks()
Mandatory for split tasks. Gets a list of split tasks.

Returns:
a list of split tasks.

getDependencies

java.util.List<Dependency> getDependencies()
Mandatory if a task has dependents. Gets a list of dependencies.

Returns:
a list of dependencies for this task.

getRecurringTasks

java.util.List<RecurringTask> getRecurringTasks()
Mandatory for recurring tasks. Gets a list of recurring tasks.

Returns:
a list of recurring tasks.

Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1.7.0)

E12063-08

Copyright © 1997, 2013, Oracle. All rights reserved.