Back to project page kapsule.
The source code is released under:
MIT License
If you think the Android project kapsule listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.epsilonlabs.kapsule.model; /*from w w w. j a va2 s . c o m*/ /** * Created by Sandile on 12/3/13. */ public class Car extends Vehicle { int passengers; public Car(String make, String model, int passengers) { super(make, model); this.passengers = passengers; } }