public interface IFlowEntry
FlowWidget.| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
getObject() |
Rectangle |
getObjectClickArea() |
double |
getPosition() |
Rectangle |
getValueClickArea() |
boolean |
isPointWithinObjectArea(Point point) |
boolean |
isPointWithinValueArea(Point point) |
void |
setObject(java.lang.Object object) |
void |
setObjectClickArea(Rectangle rect) |
void |
setPosition(double position) |
void |
setValueClickArea(Rectangle rect) |
double getPosition()
FlowEntryvoid setPosition(double position)
position - The position to be used for this FlowEntryjava.lang.Object getObject()
FlowEntryvoid setObject(java.lang.Object object)
object - The object to be used for this FlowEntryRectangle getValueClickArea()
FlowEntry.void setValueClickArea(Rectangle rect)
rect - The area sensible for beeing clicked for editing the value
of this FlowEntry.Rectangle getObjectClickArea()
FlowEntry.void setObjectClickArea(Rectangle rect)
rect - The area sensible for beeing clicked for editing the object
of this FlowEntry.boolean isPointWithinValueArea(Point point)
point - The position to be checkedtrue of the given point lies within the value area,
false otherwise.boolean isPointWithinObjectArea(Point point)
point - The position to be checkedtrue of the given point lies within the object area,
false otherwise.