Home | History | Annotate | Download | only in smackx

Lines Matching refs:feature

247         // To add a new feature as supported use the #addFeature message        
384 * Registers that a new feature is supported by this XMPP entity. When this client is
392 * @param feature the feature to register as supported.
394 public void addFeature(String feature) {
396 features.add(feature);
402 * Removes the specified feature from the supported features by this XMPP entity.<p>
407 * @param feature the feature to remove from the supported features.
409 public void removeFeature(String feature) {
411 features.remove(feature);
417 * Returns true if the specified feature is registered in the ServiceDiscoveryManager.
419 * @param feature the feature to look for.
422 public boolean includesFeature(String feature) {
424 return features.contains(feature);