Back to project page mobile-android.
The source code is released under:
MIT License
If you think the Android project mobile-android 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.manyconf.conference; // ww w. j a v a 2 s .c o m import java.util.ArrayList; import java.util.HashMap; import java.util.LinkedHashMap; /** * Describes what a class should implement to support the ConferenceBuilder class. */ interface ConferenceBuilderDelegate { void retrievedConferenceList(LinkedHashMap<Integer, ConferenceModel> conferenceList, String errorMsg); void retrievedCachedConferenceList(LinkedHashMap<Integer, ConferenceModel> conferenceList, String errorMsg); }