Revision 43865 branches/org.gvsig.desktop-2018a/org.gvsig.desktop.library/org.gvsig.raster/org.gvsig.raster.lib/org.gvsig.raster.lib.buffer.spi/src/main/java/org/gvsig/raster/lib/buffer/spi/operations/OperationServices.java

View differences:

OperationServices.java
26 26
import org.gvsig.raster.lib.buffer.api.exceptions.BufferOperationException;
27 27
import org.gvsig.raster.lib.buffer.api.operations.Operation;
28 28
import org.gvsig.tools.dynobject.DynObject;
29
import org.gvsig.tools.task.TaskStatus;
29 30

  
30 31

  
31 32
/**
......
39 40
     */
40 41
    public DynObject getParameters();
41 42

  
43
    public Object getParameter(String name, Object defaultValue);
44
    
45
    public void setParameter(String name, Object value);
42 46
    /**
43 47
     * @return the input buffer
44 48
     */
......
49 53
     */
50 54
    public Buffer getOutputBuffer();
51 55

  
56
    public void setOutputBuffer(Buffer theOutputBuffer);
57
    
52 58
    /**
53 59
     * Prepare the process
54 60
     * @throws BufferOperationException
......
67 73
     */
68 74
    void postProcess() throws BufferOperationException;
69 75

  
76
    TaskStatus getTaskStatus();
70 77
}

Also available in: Unified diff