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 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
 
-
 
16
	private double length;
11
    private double length;
17
 
12
 
18
    private double width;
13
    private double width;
19
 
14
 
20
    private double height;
15
    private double height;
21
 
16