Searched refs:ReportedData (Results 1 - 8 of 8) sorted by relevance

/external/smack/src/org/jivesoftware/smackx/search/
H A DSimpleUserSearch.java22 import org.jivesoftware.smackx.ReportedData;
31 * the mechanism for allowing always type ReportedData to be returned by any search result,
39 private ReportedData data;
45 public ReportedData getReportedData() {
91 ReportedData data = new ReportedData();
92 data.addColumn(new ReportedData.Column("JID", "jid", "text-single"));
96 List<ReportedData.Field> fields = new ArrayList<ReportedData.Field>();
102 ReportedData
[all...]
H A DUserSearchManager.java22 import org.jivesoftware.smackx.ReportedData;
44 * ReportedData data = search.getSearchResults(answerForm);
78 * in the form of <code>ReportedData</code>
82 * @return the ReportedData returned by the server.
85 public ReportedData getSearchResults(Form searchForm, String searchService) throws XMPPException {
H A DUserSearch.java29 import org.jivesoftware.smackx.ReportedData;
95 * @return ReportedData the data found from the query.
99 public ReportedData sendSearchForm(Connection con, Form searchForm, String searchService) throws XMPPException {
121 return ReportedData.getReportedDataFrom(response);
130 * @return ReportedData the data found from the query.
134 public ReportedData sendSimpleSearchForm(Connection con, Form searchForm, String searchService) throws XMPPException {
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
H A DTranscriptSearchManager.java30 import org.jivesoftware.smackx.ReportedData;
88 public ReportedData submitSearch(String serviceJID, Form completedForm) throws XMPPException {
107 return ReportedData.getReportedDataFrom(response);
H A DAgentSession.java39 import org.jivesoftware.smackx.ReportedData;
496 public ReportedData searchTranscripts(Form completedForm) throws XMPPException {
/external/smack/src/org/jivesoftware/smackx/
H A DReportedData.java38 public class ReportedData { class
45 * Returns a new ReportedData if the packet is used for reporting data and includes an
50 public static ReportedData getReportedDataFrom(Packet packet) {
57 return new ReportedData(dataForm);
65 * Creates a new ReportedData based on the returned dataForm from a search
70 private ReportedData(DataForm dataForm) { method in class:ReportedData
99 public ReportedData(){ method in class:ReportedData
100 // Allow for model creation of ReportedData.
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDataForm.java43 private ReportedData reportedData;
100 public ReportedData getReportedData() {
160 public void setReportedData(ReportedData reportedData) {
249 public static class ReportedData { class in class:DataForm
252 public ReportedData(List<FormField> fields) { method in class:DataForm.ReportedData
/external/smack/src/org/jivesoftware/smackx/provider/
H A DDataFormProvider.java124 private DataForm.ReportedData parseReported(XmlPullParser parser) throws Exception {
139 return new DataForm.ReportedData(fields);

Completed in 2332 milliseconds