Statistics
| Revision:

gvsig-geoprocess / org.gvsig.sextante / trunk / org.gvsig.sextante.app / org.gvsig.sextante.app.algorithm / org.gvsig.sextante.app.algorithm.clip / src / main / java / org / gvsig / sextante / app / algorithm / clip / ClipAlgorithm.java @ 21

History | View | Annotate | Download (726 Bytes)

1
package org.gvsig.sextante.app.algorithm.clip;
2

    
3
import es.unex.sextante.additionalInfo.AdditionalInfoNumericalValue;
4
import es.unex.sextante.core.GeoAlgorithm;
5
import es.unex.sextante.core.Sextante;
6
import es.unex.sextante.dataObjects.IRasterLayer;
7
import es.unex.sextante.exceptions.GeoAlgorithmExecutionException;
8
import es.unex.sextante.exceptions.RepeatedParameterNameException;
9

    
10
public class ClipAlgorithm extends GeoAlgorithm {
11

    
12
        public boolean processAlgorithm() throws GeoAlgorithmExecutionException{
13
                return true;
14
        }
15

    
16
        public void defineCharacteristics(){
17
                setName(Sextante.getText("Clip"));
18
                setGroup(Sextante.getText("gvSIG_Algorithms"));
19
                setGeneratesUserDefinedRasterOutput(true);
20
        }
21

    
22
}