Back to project page karin.
The source code is released under:
MIT License
If you think the Android project karin 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 cc.wanko.karin.app.textbuilder; /* ww w . j ava2 s. c o m*/ import android.content.Context; /** * Created by eagletmt on 14/05/06. */ public abstract class Segment { final int start, end; final String text; public Segment(int start, int end, String text) { this.start = start; this.end = end; this.text = text; } abstract public void onClick(Context context); }