Class VerticalDragDropManager
- java.lang.Object
-
- org.eclipse.nebula.widgets.ganttchart.dnd.VerticalDragDropManager
-
public class VerticalDragDropManager extends java.lang.Object
Convenience class for keeping track of vertical DND items
-
-
Field Summary
Fields Modifier and Type Field Description private GanttEvent
_bottomEvent
private java.util.List
_surroundingEvents
private GanttSection
_targetSection
private GanttEvent
_topEvent
-
Constructor Summary
Constructors Constructor Description VerticalDragDropManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
GanttEvent
getBottomEvent()
java.util.List
getSurroundingEvents()
GanttSection
getTargetSection()
GanttEvent
getTopEvent()
void
setBottomEvent(GanttEvent bottomEvent)
void
setSurroundingEvents(java.util.List surroundingEvents)
void
setTargetSection(GanttSection targetSection)
void
setTopEvent(GanttEvent topEvent)
-
-
-
Field Detail
-
_targetSection
private GanttSection _targetSection
-
_topEvent
private GanttEvent _topEvent
-
_bottomEvent
private GanttEvent _bottomEvent
-
_surroundingEvents
private java.util.List _surroundingEvents
-
-
Method Detail
-
getTargetSection
public GanttSection getTargetSection()
-
setTargetSection
public void setTargetSection(GanttSection targetSection)
-
getTopEvent
public GanttEvent getTopEvent()
-
setTopEvent
public void setTopEvent(GanttEvent topEvent)
-
getBottomEvent
public GanttEvent getBottomEvent()
-
setBottomEvent
public void setBottomEvent(GanttEvent bottomEvent)
-
getSurroundingEvents
public java.util.List getSurroundingEvents()
-
setSurroundingEvents
public void setSurroundingEvents(java.util.List surroundingEvents)
-
clear
public void clear()
-
-