Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 1

public class Engine {

private int EngId;


private Car mycar;

public Engine (int my_id){


this.EngId=my_id;

public int getEngId(){


return EngId;

}
public int printCarId(){
return this.mycar.getId();

}
public Car setcar(Car car){
return this.mycar=car;
}
public String toString(){return ""+this.EngId;}

You might also like