package android.text.util; import android.text.Spannable; import android.widget.TextView; public class Linkify { public static final boolean addLinks(Spannable text, int mask) { return true; } public static final boolean addLinks(TextView text, int mask) { return true; } }