Package org.apache.poi.sl.draw.geom
Interface ArcToCommandIf
-
- All Superinterfaces:
PathCommand
- All Known Implementing Classes:
ArcToCommand
public interface ArcToCommandIf 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 pathString
getHR()
String
getStAng()
String
getSwAng()
String
getWR()
void
setHR(String hr)
void
setStAng(String stAng)
void
setSwAng(String swAng)
void
setWR(String wr)
-
-
-
Method Detail
-
setHR
void setHR(String hr)
-
setWR
void setWR(String wr)
-
setStAng
void setStAng(String stAng)
-
setSwAng
void setSwAng(String swAng)
-
getHR
String getHR()
-
getWR
String getWR()
-
getStAng
String getStAng()
-
getSwAng
String getSwAng()
-
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
-
-