Back to project page rcdroid.
The source code is released under:
Copyright (c) 2013, Jamie Furness (jamie@jamierf.co.uk) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following...
If you think the Android project rcdroid 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.jamierf.rcdroid.config; /*from w ww . java 2 s .c o m*/ import org.codehaus.jackson.annotate.JsonProperty; public class CarConfig { @JsonProperty private ServoConfig servos = new ServoConfig(); @JsonProperty private WebUIConfig web = new WebUIConfig(); public ServoConfig getServos() { return servos; } public WebUIConfig getWeb() { return web; } }