Back to project page TextCounter.
The source code is released under:
MIT License
If you think the Android project TextCounter 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.github.premnirmal.textcounter.formatters; //from ww w. j a va 2 s .c o m import com.github.premnirmal.textcounter.Formatter; /** * Created by prem on 10/28/14. * * Performs no formatting */ public class NoFormatter implements Formatter { @Override public String format(String prefix, String suffix, float value) { return prefix + value + suffix; } }