Subversion Repositories SmartDukaan

Rev

Rev 22577 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 22577 Rev 22598
Line 6... Line 6...
6
 */
6
 */
7
 
7
 
8
package com.aramex.stub;
8
package com.aramex.stub;
9
 
9
 
10
public class Money  implements java.io.Serializable {
10
public class Money  implements java.io.Serializable {
11
    @Override
-
 
12
	public String toString() {
-
 
13
		return "Money [currencyCode=" + currencyCode + ", value=" + value + "]";
-
 
14
	}
-
 
15
 
-
 
16
	private java.lang.String currencyCode;
11
    private java.lang.String currencyCode;
17
 
12
 
18
    private double value;
13
    private double value;
19
 
14
 
20
    public Money() {
15
    public Money() {
21
    }
16
    }