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 va 2 s .com /** * Created by Sandile on 12/3/13. */ public class Truck extends Vehicle { String company; public Truck(String make, String model, String company) { super(make, model); this.company = company; } }