View Javadoc

1   /*
2    * @(#)$Id: BatchValue.java 689 2009-07-22 00:10:27Z bsigner $
3    *
4    * Author       :   Ueli Kurmann, igesture@uelikurmann.ch
5    *
6    * Purpose      : 	Represents a simple value parameter of the batch
7    *                  process.
8    *
9    * -----------------------------------------------------------------------
10   *
11   * Revision Information:
12   *
13   * Date             Who         Reason
14   *
15   * Dec 26, 2006     ukurmann    Initial Release
16   * Mar 22, 2007     bsigner     Cleanup
17   *
18   * -----------------------------------------------------------------------
19   *
20   * Copyright 1999-2009 ETH Zurich. All Rights Reserved.
21   *
22   * This software is the proprietary information of ETH Zurich.
23   * Use is subject to license terms.
24   * 
25   */
26  
27  
28  package org.ximtec.igesture.batch.core;
29  
30  
31  
32  /**
33   * Represents a simple value parameter of the batch process.
34   * 
35   * @version 1.0 Dec 2006
36   * @author Ueli Kurmann, igesture@uelikurmann.ch
37   * @author Beat Signer, signer@inf.ethz.ch
38   */
39  public class BatchValue {
40  
41     
42     private String value;
43  
44  
45     /**
46      * Sets the value.
47      * 
48      * @param value the value to be set.
49      */
50     public void setValue(String value) {
51        this.value = value;
52     } // setValue
53  
54  
55     /**
56      * Returns the value.
57      * 
58      * @return the value of this batch value instance.
59      */
60     public String getValue() {
61        return this.value;
62     } // getValue
63  
64  
65  
66     
67  }