Package org.apache.poi.sl.draw.geom
Interface MoveToCommandIf
-
- All Superinterfaces:
PathCommand
- All Known Implementing Classes:
MoveToCommand
public interface MoveToCommandIf extends PathCommand
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
execute(Path2D.Double path, Context ctx)
Execute the command an append a segment to the specified pathAdjustPointIf
getPt()
void
setPt(AdjustPointIf pt)
-
-
-
Method Detail
-
getPt
AdjustPointIf getPt()
-
setPt
void setPt(AdjustPointIf pt)
-
execute
default void execute(Path2D.Double path, Context ctx)
Description copied from interface:PathCommand
Execute the command an append a segment to the specified path- Specified by:
execute
in interfacePathCommand
- Parameters:
path
- the path to append the result toctx
- the context to lookup variables
-
-