Back to project page RUflow.
The source code is released under:
GNU General Public License
If you think the Android project RUflow 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 is.ru.app; //from w w w .jav a 2s . c o m import android.graphics.Path; import android.graphics.Region; /** * Created by olafurn on 14.9.2014. */ public class SuperPath { //Color variable private int color; private Path m_Path; public SuperPath(Path src, int color) { this.m_Path = src; this.color = color; } public void setColor(int color) { this.color = color; } public int getColor() { return this.color; } }