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 Dimensions  implements java.io.Serializable {
10
public class Dimensions  implements java.io.Serializable {
-
 
11
    @Override
-
 
12
	public String toString() {
-
 
13
		return "Dimensions [length=" + length + ", width=" + width + ", height=" + height + ", unit=" + unit + "]";
-
 
14
	}
-
 
15
 
11
    private double length;
16
	private double length;
12
 
17
 
13
    private double width;
18
    private double width;
14
 
19
 
15
    private double height;
20
    private double height;
16
 
21