Inside your Vehicle create a new inner class Body.
Body should have the field String color, its constructor and the method void printColor for printing the color.
The output of the method printColor for a vehicle called Dixi with a red body will look like:
Vehicle Dixi has red body.
Remember about constructor in the outer class.
Please, don't use the access modifier private for a class or a method.