Back to project page infinitep.
The source code is released under:
Apache License
If you think the Android project infinitep 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 es.daconstenla.infinip.customcomponents.pieces.data; /*from w w w .j ava2 s .co m*/ import android.graphics.Paint; import android.graphics.RectF; /** * Store the state for a data item. */ public class ItemHorizontalBar { public String mLabel; public float mWidth; // computed values public RectF mRect = new RectF(); public Paint mPaint; public Paint mPaintB; }