Giving proper indentation
This commit is contained in:
parent
9e74f7cd22
commit
0d91f704c2
|
@ -5,6 +5,7 @@ import lombok.Data;
|
|||
@AllArgsConstructor
|
||||
@Data
|
||||
public class Car {
|
||||
|
||||
String manufacturerName;
|
||||
String fuleType;
|
||||
String modelNo;
|
||||
|
@ -31,5 +32,4 @@ public class Car {
|
|||
public void enableChildLock() {
|
||||
//Enable child lock in the car
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -8,25 +8,21 @@ public class FordAdapter implements ManufacturingPort {
|
|||
@Override
|
||||
public void manufacturingMethodology(Car car) {
|
||||
// Process for manufacturing ford car
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void manufacturingLocation(String location) {
|
||||
// Location at which ford manufacturing will take place
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void logoForTheCar(Car car) {
|
||||
// Put ford logo on the car
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void timeToMarketForTheCar(Car car) {
|
||||
// Find time to market for a particular ford car model
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -44,5 +40,4 @@ public class FordAdapter implements ManufacturingPort {
|
|||
public void fordEngineFuelTest(Car car) {
|
||||
//Do engine test for ford
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -7,26 +7,22 @@ public class HondaAdapter implements ManufacturingPort {
|
|||
|
||||
@Override
|
||||
public void manufacturingMethodology(Car car) {
|
||||
// Process for manufacturing honda car
|
||||
|
||||
// Process for manufacturing honda car
|
||||
}
|
||||
|
||||
@Override
|
||||
public void manufacturingLocation(String location) {
|
||||
// Location at which honda manufacturing will take place
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void logoForTheCar(Car car) {
|
||||
// Put honda logo on the car
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void timeToMarketForTheCar(Car car) {
|
||||
// Find time to market for a particular honda car model
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -44,5 +40,4 @@ public class HondaAdapter implements ManufacturingPort {
|
|||
public void carCrashAndSafetyTest(Car car) {
|
||||
//Do car crash test got honda car
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue