Back to project page CalWatch.
The source code is released under:
GNU General Public License
If you think the Android project CalWatch listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * CalWatch/* ww w . j a va 2s . c o m*/ * Copyright (C) 2014 by Dan Wallach * Home page: http://www.cs.rice.edu/~dwallach/calwatch/ * Licensing: http://www.cs.rice.edu/~dwallach/calwatch/licensing.html */ package org.dwallach.calwatch; import android.graphics.Path; /** * Created by dwallach on 8/25/14. */ public class PathCache { private Path cache = null; public PathCache() { } public Path get() { return cache; } public void set(Path p) { cache = p; } }