-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNewCarObj.java
More file actions
129 lines (99 loc) · 3.6 KB
/
NewCarObj.java
File metadata and controls
129 lines (99 loc) · 3.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package com.application.qatarmotorsports;
public class NewCarObj {
String CarMake,RegistrationNumber,Model,CubicCapacity,YearofManufac,ChassisNumber,GrouporClass,EngineNumber,HomologationNumber,PredominantColor,CountryofReg,TechPassportNumber,PayedforIndividualRound;
public NewCarObj(String carMake, String registrationNumber, String model, String cubicCapacity, String yearofManufac, String chassisNumber, String grouporClass, String engineNumber, String homologationNumber, String predominantColor, String countryofReg, String techPassportNumber, String payedforIndividualRound) {
CarMake = carMake;
RegistrationNumber = registrationNumber;
Model = model;
CubicCapacity = cubicCapacity;
YearofManufac = yearofManufac;
ChassisNumber = chassisNumber;
GrouporClass = grouporClass;
EngineNumber = engineNumber;
HomologationNumber = homologationNumber;
PredominantColor = predominantColor;
CountryofReg = countryofReg;
TechPassportNumber = techPassportNumber;
PayedforIndividualRound = payedforIndividualRound;
}
public NewCarObj(){
}
public String getCarMake() {
return CarMake;
}
public void setCarMake(String carMake) {
CarMake = carMake;
}
public String getRegistrationNumber() {
return RegistrationNumber;
}
public void setRegistrationNumber(String registrationNumber) {
RegistrationNumber = registrationNumber;
}
public String getModel() {
return Model;
}
public void setModel(String model) {
Model = model;
}
public String getCubicCapacity() {
return CubicCapacity;
}
public void setCubicCapacity(String cubicCapacity) {
CubicCapacity = cubicCapacity;
}
public String getYearofManufac() {
return YearofManufac;
}
public void setYearofManufac(String yearofManufac) {
YearofManufac = yearofManufac;
}
public String getChassisNumber() {
return ChassisNumber;
}
public void setChassisNumber(String chassisNumber) {
ChassisNumber = chassisNumber;
}
public String getGrouporClass() {
return GrouporClass;
}
public void setGrouporClass(String grouporClass) {
GrouporClass = grouporClass;
}
public String getEngineNumber() {
return EngineNumber;
}
public void setEngineNumber(String engineNumber) {
EngineNumber = engineNumber;
}
public String getHomologationNumber() {
return HomologationNumber;
}
public void setHomologationNumber(String homologationNumber) {
HomologationNumber = homologationNumber;
}
public String getPredominantColor() {
return PredominantColor;
}
public void setPredominantColor(String predominantColor) {
PredominantColor = predominantColor;
}
public String getCountryofReg() {
return CountryofReg;
}
public void setCountryofReg(String countryofReg) {
CountryofReg = countryofReg;
}
public String getTechPassportNumber() {
return TechPassportNumber;
}
public void setTechPassportNumber(String techPassportNumber) {
TechPassportNumber = techPassportNumber;
}
public String getPayedforIndividualRound() {
return PayedforIndividualRound;
}
public void setPayedforIndividualRound(String payedforIndividualRound) {
PayedforIndividualRound = payedforIndividualRound;
}
}