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; /* www.j a v a 2s . com*/ import org.codehaus.jackson.annotate.JsonProperty; public class WebUIConfig { @JsonProperty private final int port = 8080; @JsonProperty private int mapZoomLevel = 20; @JsonProperty private boolean allowMapZoom = true; public int getPort() { return port; } public int getMapZoomLevel() { return mapZoomLevel; } public boolean isAllowMapZoom() { return allowMapZoom; } }