Skip to content
Snippets Groups Projects
Commit 113b67e3 authored by AkMo3's avatar AkMo3 Committed by Vincent Massol
Browse files

[Misc] Add javadoc to all public methods

parent 0ef83ea4
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@
public interface SortableEventQuery extends EventQuery
{
/**
* The sort close to apply to the found events.
* The sort clause to apply to the found events.
*
* @version $Id$
*/
......@@ -65,6 +65,10 @@ public enum Order
private final Order order;
/**
* @param property see {@link #getProperty}
* @param order see {@link #getOrder}
*/
public SortClause(String property, Order order)
{
this.property = property;
......@@ -80,7 +84,7 @@ public String getProperty()
}
/**
* @return the order to apply
* @return the order to apply (ascending or descending)
*/
public Order getOrder()
{
......@@ -121,7 +125,7 @@ public String toString()
}
/**
* @return the sort closes
* @return the sort clauses
*/
List<SortClause> getSorts();
}
......@@ -61,6 +61,9 @@ enum RatingQueryField
this.fieldName = fieldName;
}
/**
* @return the name of the field used for filtering Rating queries.
*/
public String getFieldName()
{
return this.fieldName;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment