Back to project page JayJayLab-Android-Demo.
The source code is released under:
Apache License
If you think the Android project JayJayLab-Android-Demo 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.jayjaylab.androiddemo.event; // ww w. j av a 2 s. c om import android.view.View; /** * Created by jongjoo on 12/27/14. */ public class OnLongClickEvent { View view; int which; public OnLongClickEvent(View view, int which) { this.view = view; this.which = which; } public String toString() { StringBuilder builder = new StringBuilder(); builder.append("view : " + view); builder.append(", which : " + which); return builder.toString(); } public View getView() { return view; } public void setView(View view) { this.view = view; } public int getWhich() { return which; } public void setWhich(int which) { this.which = which; } }