Statistics
| Revision:

root / org.gvsig.toolbox / trunk / org.gvsig.toolbox / org.gvsig.toolbox.gui / src / main / java / es / unex / sextante / gui / algorithm / OutputParameterContainer.java @ 338

History | View | Annotate | Download (848 Bytes)

1
package es.unex.sextante.gui.algorithm;
2

    
3
/**
4
 * A class representing a output object key and the component used to introduce its value (i.e. its associated filename)
5
 *
6
 * @author volaya
7
 *
8
 */
9
public class OutputParameterContainer {
10

    
11
   Object m_Container;
12
   String m_sParameterName;
13

    
14

    
15
   public OutputParameterContainer(final String sName,
16
                                   final Object container) {
17

    
18
      m_sParameterName = sName;
19
      m_Container = container;
20

    
21
   }
22

    
23

    
24
   public Object getContainer() {
25

    
26
      return m_Container;
27

    
28
   }
29

    
30

    
31
   public void setContainer(final Object container) {
32

    
33
      m_Container = container;
34

    
35
   }
36

    
37

    
38
   public String getName() {
39

    
40
      return m_sParameterName;
41

    
42
   }
43

    
44

    
45
   public void setName(final String sName) {
46

    
47
      m_sParameterName = sName;
48

    
49
   }
50

    
51

    
52
}