OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:reporteddata
(Results
1 - 9
of
9
) sorted by null
/external/smack/src/org/jivesoftware/smackx/search/
SimpleUserSearch.java
22
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
.Field field = new ReportedData.Field("jid", valueList)
[
all
...]
UserSearchManager.java
22
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 {
UserSearch.java
29
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/packet/
DataForm.java
43
private
ReportedData
reportedData
;
100
public
ReportedData
getReportedData() {
101
return
reportedData
;
158
* @param
reportedData
the fields that will be returned from a search.
160
public void setReportedData(
ReportedData
reportedData
) {
161
this.
reportedData
=
reportedData
;
249
public static class
ReportedData
{
[
all
...]
/external/smack/src/org/jivesoftware/smackx/
ReportedData.java
38
public class
ReportedData
{
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) {
99
public
ReportedData
(){
100
// Allow for model creation of
ReportedData
.
Form.java
62
* Returns a new
ReportedData
if the packet is used for gathering data and includes an
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
TranscriptSearchManager.java
30
import org.jivesoftware.smackx.
ReportedData
;
88
public
ReportedData
submitSearch(String serviceJID, Form completedForm) throws XMPPException {
107
return
ReportedData
.getReportedDataFrom(response);
AgentSession.java
39
import org.jivesoftware.smackx.
ReportedData
;
496
public
ReportedData
searchTranscripts(Form completedForm) throws XMPPException {
[
all
...]
/external/smack/src/org/jivesoftware/smackx/provider/
DataFormProvider.java
124
private DataForm.
ReportedData
parseReported(XmlPullParser parser) throws Exception {
139
return new DataForm.
ReportedData
(fields);
Completed in 2346 milliseconds