Revision 30 org.gvsig.sextante/trunk/org.gvsig.sextante.app/org.gvsig.sextante.app.algorithm/org.gvsig.sextante.app.algorithm.base/src/main/java/org/gvsig/sextante/app/algorithm/base/panel/AlgorithmOutputPanel.java

View differences:

AlgorithmOutputPanel.java
30 30
 * @author Nacho Brodin (nachobrodin@gmail.com)
31 31
 */
32 32
public class AlgorithmOutputPanel extends JPanel implements IOutputSelection, ActionListener {
33
	private GeoAlgorithm                     m_Algorithm = null;
34
	private JComboBox                        combo       = null;
35
	private JButton                          button      = null;
36
	private ArrayList<DataStoreParameters>   paramList   = new ArrayList<DataStoreParameters>();
33
	private static final long                serialVersionUID = 1L;
34
	//private GeoAlgorithm                     m_Algorithm      = null;
35
	private JComboBox                        combo            = null;
36
	private JButton                          button           = null;
37
	private ArrayList<DataStoreParameters>   paramList        = new ArrayList<DataStoreParameters>();
37 38
	
38 39
	public AlgorithmOutputPanel() {
39 40
		super();
......
41 42
	}
42 43

  
43 44
    public void init(GeoAlgorithm algorithm) {
44
    	m_Algorithm = algorithm;
45
    	//m_Algorithm = algorithm;
45 46
    	initGUI();
46 47
    }
47 48

  
......
91 92
		return button;
92 93
	}
93 94
	
95
	@SuppressWarnings("unchecked")
94 96
	private void loadProviderList(JComboBox c, ArrayList<DataStoreParameters> paramList) {
95 97
		DataManager manager = DALLocator.getDataManager();
96 98
		List list = manager.getStoreProviders();
......
125 127
		}
126 128
	}
127 129

  
128
	public String getFilepath() {
130
	public String getOutputParameters() {
129 131
		return "/tmp/prueba";
130 132
	}
131 133

  
132
	public void setFilepath(String arg0) {
134
	public void setOutputParameters(Object param) {
133 135
		// TODO Auto-generated method stub
134 136
		
135 137
	}

Also available in: Unified diff