Subversion Repositories SmartDukaan

Rev

Rev 20640 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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