Back to project page TrackEveryPenny.
The source code is released under:
Apache License
If you think the Android project TrackEveryPenny 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 ca.jbrains.upfp.view; //from w w w .ja va 2 s .co m import com.google.common.base.Function; import com.sun.istack.internal.Nullable; public class SurroundWithQuotes implements Function<String, String> { public static final SurroundWithQuotes INSTANCE = new SurroundWithQuotes(); @Override public String apply(@Nullable String text) { return "\"" + text + "\""; } }