Commit f9f48f79 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Javadoc fixes.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3532 b35dd754-fafc-0310-a699-88a17e54d16e
parent e534eb68
/** /**
* $RCSfile$
* $Revision: 691 $ * $Revision: 691 $
* $Date: 2004-12-13 15:06:54 -0300 (Mon, 13 Dec 2004) $ * $Date: 2004-12-13 15:06:54 -0300 (Mon, 13 Dec 2004) $
* *
* Copyright (C) 2004 Jive Software. All rights reserved. * Copyright (C) 2004-2006 Jive Software. All rights reserved.
* *
* This software is published under the terms of the GNU Public License (GPL), * This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution. * a copy of which is included in this distribution.
...@@ -27,7 +26,7 @@ public class UserCollection extends AbstractCollection { ...@@ -27,7 +26,7 @@ public class UserCollection extends AbstractCollection {
private String[] elements; private String[] elements;
/** /**
* Constructs a new UserIterator. * Constructs a new UserCollection.
*/ */
public UserCollection(String [] elements) { public UserCollection(String [] elements) {
this.elements = elements; this.elements = elements;
......
...@@ -224,13 +224,13 @@ public class UserManager implements IQResultListener { ...@@ -224,13 +224,13 @@ public class UserManager implements IQResultListener {
} }
/** /**
* earches for users based on a set of fields and a query string. The fields must * Searches for users based on a set of fields and a query string. The fields must
* be taken from the values returned by {@link #getSearchFields()}. The query can * be taken from the values returned by {@link #getSearchFields()}. The query can
* include wildcards. For example, a search on the field "Name" with a query of "Ma*" * include wildcards. For example, a search on the field "Name" with a query of "Ma*"
* might return user's with the name "Matt", "Martha" and "Madeline".<p> * might return user's with the name "Matt", "Martha" and "Madeline".<p>
* *
* This method should throw an UnsupportedOperationException if this * This method throws an UnsupportedOperationException if this operation is
* operation is not supported by the backend user store. * not supported by the user provider.
* *
* @param fields the fields to search on. * @param fields the fields to search on.
* @param query the query string. * @param query the query string.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment