OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ItemReply
(Results
1 - 2
of
2
) sorted by null
/external/smack/src/org/jivesoftware/smackx/pubsub/
ItemReply.java
17
* These are the options for the node configuration setting {@link ConfigureForm#setItemReply(
ItemReply
)},
22
public enum
ItemReply
ConfigureForm.java
287
public
ItemReply
getItemReply()
289
String value = getFieldValue(ConfigureNodeFields.
itemreply
);
294
return
ItemReply
.valueOf(value);
302
public void setItemReply(
ItemReply
reply)
304
addField(ConfigureNodeFields.
itemreply
, FormField.TYPE_LIST_SINGLE);
305
setAnswer(ConfigureNodeFields.
itemreply
.getFieldName(), getListSingle(reply.toString()));
Completed in 774 milliseconds