Cleanup checkstyle in yang-{data,model}-api
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / OperationDefinition.java
index 94ecd0a7c0d3c5235af49578ff6db0df2e025071..4f285d85fe5c7e41d2f2ba5fdfe6110882a29a48 100644 (file)
@@ -12,28 +12,35 @@ import com.google.common.annotations.Beta;
 import java.util.Set;
 
 /**
- * Common interface for an operation
+ * Common interface for an operation.
  */
 @Beta
 public interface OperationDefinition extends SchemaNode {
-
     /**
+     * Returns the set of type definitions declared under this operation.
+     *
      * @return Set of type definitions declared under this operation.
      */
     Set<TypeDefinition<?>> getTypeDefinitions();
 
     /**
+     * Returns the set of grouping statements declared under this operation.
+     *
      * @return Set of grouping statements declared under this operation.
      */
     Set<GroupingDefinition> getGroupings();
 
     /**
+     * Returns definition of input parameters for this operation.
+     *
      * @return Definition of input parameters for this operation.
      *         The substatements of input define nodes under the operation's input node.
      */
     ContainerSchemaNode getInput();
 
     /**
+     * Returns definition of output parameters for this operation.
+     *
      * @return Definition of output parameters for this operation. The
      *         substatements of output define nodes under the operation's output node.
      */