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 ww . j a v a 2 s . co m*/ /** * Created by Sandile on 12/3/13. */ public class Vehicle { String make; String model; public Vehicle(String make, String model) { this.make = make; this.model = model; } }