Package org.jzy3d.plot3d.builder
Class AbstractRemapTask
- java.lang.Object
-
- org.jzy3d.plot3d.builder.AbstractRemapTask
-
- All Implemented Interfaces:
Runnable
- Direct Known Subclasses:
IncreaseParamRemapTask
public abstract class AbstractRemapTask extends Object implements Runnable
A remapping task that let a remapping be performed in a simple while loop. To be used by an Executor or Thread.- Author:
- martin
-
-
Constructor Summary
Constructors Constructor Description AbstractRemapTask(Shape surface, SingleParameterMapper mapper)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description String
getInfo()
SingleParameterMapper
getMapper()
Shape
getSurface()
abstract void
remap()
void
run()
void
setInfo(String info)
void
setMapper(SingleParameterMapper mapper)
void
setSurface(Shape surface)
-
-
-
Field Detail
-
mapper
protected SingleParameterMapper mapper
-
info
protected String info
-
time
protected TicToc time
-
surface
protected Shape surface
-
-
Constructor Detail
-
AbstractRemapTask
public AbstractRemapTask(Shape surface, SingleParameterMapper mapper)
-
-
Method Detail
-
remap
public abstract void remap()
-
getSurface
public Shape getSurface()
-
setSurface
public void setSurface(Shape surface)
-
getMapper
public SingleParameterMapper getMapper()
-
setMapper
public void setMapper(SingleParameterMapper mapper)
-
getInfo
public String getInfo()
-
setInfo
public void setInfo(String info)
-
-