Back to project page innovativeproject-meetingdataexchange.
The source code is released under:
MIT License
If you think the Android project innovativeproject-meetingdataexchange 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 meeting_options; //from w w w. j a v a2 s. c o m public class RefreshMeetingProgressListView implements Runnable { private MeetingProgress frag; public RefreshMeetingProgressListView(MeetingProgress frag) { this.frag=frag; } @Override public void run() { frag.refreshList(); } }