本文整理汇总了Java中org.jivesoftware.smackx.RemoteRosterEntry类的典型用法代码示例。如果您正苦于以下问题:Java RemoteRosterEntry类的具体用法?Java RemoteRosterEntry怎么用?Java RemoteRosterEntry使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
RemoteRosterEntry类属于org.jivesoftware.smackx包,在下文中一共展示了RemoteRosterEntry类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: addRosterEntry
import org.jivesoftware.smackx.RemoteRosterEntry; //导入依赖的package包/类
/**
* Adds a roster entry to the packet.
*
* @param rosterEntry a roster entry to add.
*/
public void addRosterEntry(RosterEntry rosterEntry) {
// Obtain a String[] from the roster entry groups name
List<String> groupNamesList = new ArrayList<String>();
String[] groupNames;
for (RosterGroup group : rosterEntry.getGroups()) {
groupNamesList.add(group.getName());
}
groupNames = groupNamesList.toArray(new String[groupNamesList.size()]);
// Create a new Entry based on the rosterEntry and add it to the packet
RemoteRosterEntry remoteRosterEntry = new RemoteRosterEntry(rosterEntry.getUser(),
rosterEntry.getName(), groupNames);
addRosterEntry(remoteRosterEntry);
}
开发者ID:ice-coffee,项目名称:EIM,代码行数:21,代码来源:RosterExchange.java
示例2: addRosterEntry
import org.jivesoftware.smackx.RemoteRosterEntry; //导入依赖的package包/类
/**
* Adds a roster entry to the packet.
*
* @param rosterEntry
* a roster entry to add.
*/
public void addRosterEntry(RosterEntry rosterEntry) {
// Obtain a String[] from the roster entry groups name
List<String> groupNamesList = new ArrayList<String>();
String[] groupNames;
for (RosterGroup group : rosterEntry.getGroups()) {
groupNamesList.add(group.getName());
}
groupNames = groupNamesList.toArray(new String[groupNamesList.size()]);
// Create a new Entry based on the rosterEntry and add it to the packet
RemoteRosterEntry remoteRosterEntry = new RemoteRosterEntry(
rosterEntry.getUser(), rosterEntry.getName(), groupNames);
addRosterEntry(remoteRosterEntry);
}
开发者ID:ikantech,项目名称:xmppsupport_v2,代码行数:22,代码来源:RosterExchange.java
示例3: getRosterEntries
import org.jivesoftware.smackx.RemoteRosterEntry; //导入依赖的package包/类
/**
* Returns an Iterator for the roster entries in the packet.
*
* @return an Iterator for the roster entries in the packet.
*/
public Iterator<RemoteRosterEntry> getRosterEntries() {
synchronized (remoteRosterEntries) {
List<RemoteRosterEntry> entries = Collections.unmodifiableList(new ArrayList<RemoteRosterEntry>(remoteRosterEntries));
return entries.iterator();
}
}
开发者ID:CJC-ivotten,项目名称:androidPN-client.,代码行数:12,代码来源:RosterExchange.java
示例4: toXML
import org.jivesoftware.smackx.RemoteRosterEntry; //导入依赖的package包/类
/**
* Returns the XML representation of a Roster Item Exchange according the specification.
*
* Usually the XML representation will be inside of a Message XML representation like
* in the following example:
* <pre>
* <message id="MlIpV-4" to="[email protected]" from="[email protected]/Smack">
* <subject>Any subject you want</subject>
* <body>This message contains roster items.</body>
* <x xmlns="jabber:x:roster">
* <item jid="[email protected]"/>
* <item jid="[email protected]"/>
* </x>
* </message>
* </pre>
*
*/
public String toXML() {
StringBuilder buf = new StringBuilder();
buf.append("<").append(getElementName()).append(" xmlns=\"").append(getNamespace()).append(
"\">");
// Loop through all roster entries and append them to the string buffer
for (Iterator i = getRosterEntries(); i.hasNext();) {
RemoteRosterEntry remoteRosterEntry = (RemoteRosterEntry) i.next();
buf.append(remoteRosterEntry.toXML());
}
buf.append("</").append(getElementName()).append(">");
return buf.toString();
}
开发者ID:ice-coffee,项目名称:EIM,代码行数:30,代码来源:RosterExchange.java
示例5: toXML
import org.jivesoftware.smackx.RemoteRosterEntry; //导入依赖的package包/类
/**
* Returns the XML representation of a Roster Item Exchange according the specification.
*
* Usually the XML representation will be inside of a Message XML representation like
* in the following example:
* <pre>
* <message id="MlIpV-4" to="[email protected]" from="[email protected]/Smack">
* <subject>Any subject you want</subject>
* <body>This message contains roster items.</body>
* <x xmlns="jabber:x:roster">
* <item jid="[email protected]"/>
* <item jid="[email protected]"/>
* </x>
* </message>
* </pre>
*
*/
public String toXML() {
StringBuilder buf = new StringBuilder();
buf.append("<").append(getElementName()).append(" xmlns=\"").append(getNamespace()).append(
"\">");
// Loop through all roster entries and append them to the string buffer
for (Iterator<RemoteRosterEntry> i = getRosterEntries(); i.hasNext();) {
RemoteRosterEntry remoteRosterEntry = i.next();
buf.append(remoteRosterEntry.toXML());
}
buf.append("</").append(getElementName()).append(">");
return buf.toString();
}
开发者ID:CJC-ivotten,项目名称:androidPN-client.,代码行数:30,代码来源:RosterExchange.java
示例6: toXML
import org.jivesoftware.smackx.RemoteRosterEntry; //导入依赖的package包/类
/**
* Returns the XML representation of a Roster Item Exchange according the
* specification.
*
* Usually the XML representation will be inside of a Message XML
* representation like in the following example:
*
* <pre>
* <message id="MlIpV-4" to="[email protected]" from="[email protected]/Smack">
* <subject>Any subject you want</subject>
* <body>This message contains roster items.</body>
* <x xmlns="jabber:x:roster">
* <item jid="[email protected]"/>
* <item jid="[email protected]"/>
* </x>
* </message>
* </pre>
*
*/
public String toXML() {
StringBuilder buf = new StringBuilder();
buf.append("<").append(getElementName()).append(" xmlns=\"")
.append(getNamespace()).append("\">");
// Loop through all roster entries and append them to the string buffer
for (Iterator i = getRosterEntries(); i.hasNext();) {
RemoteRosterEntry remoteRosterEntry = (RemoteRosterEntry) i.next();
buf.append(remoteRosterEntry.toXML());
}
buf.append("</").append(getElementName()).append(">");
return buf.toString();
}
开发者ID:ikantech,项目名称:xmppsupport_v2,代码行数:32,代码来源:RosterExchange.java
注:本文中的org.jivesoftware.smackx.RemoteRosterEntry类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论