Update Objects->MoreObjects
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / ChoiceNode.java
index cae5136a40f75867d97cd56829818b7649028177..401c009fd4b4e64bf015cf91fb99e515b8c010c1 100644 (file)
@@ -12,6 +12,7 @@ import java.util.Set;
 import org.opendaylight.yangtools.yang.common.QName;
 
 /**
+ *
  * The ChoiceNode defines a set of alternatives. It consists of a number of
  * branches defined as ChoiceCaseNode objects.
  */
@@ -19,7 +20,7 @@ public interface ChoiceNode extends DataSchemaNode, AugmentationTarget {
 
     /**
      * Returns cases of choice.
-     * 
+     *
      * @return set of ChoiceCaseNode objects defined in this node which
      *         represents set of arguments of the YANG <code>case</code>
      *         substatement of the <code>choice</code> statement
@@ -27,9 +28,9 @@ public interface ChoiceNode extends DataSchemaNode, AugmentationTarget {
     Set<ChoiceCaseNode> getCases();
 
     /**
-     * 
+     *
      * Returns the concrete case according to specified Q name.
-     * 
+     *
      * @param name
      *            QName of seeked Choice Case Node
      * @return child case node of this Choice if child with given name is
@@ -39,7 +40,7 @@ public interface ChoiceNode extends DataSchemaNode, AugmentationTarget {
 
     /**
      * Returns the concrete case according to specified name.
-     * 
+     *
      * @param name
      *            name of seeked child as String
      * @return child case node (or local name of case node) of this Choice if
@@ -48,9 +49,9 @@ public interface ChoiceNode extends DataSchemaNode, AugmentationTarget {
     ChoiceCaseNode getCaseNodeByName(String name);
 
     /**
-     * 
+     *
      * Returns name of case which is in the choice specified as default
-     * 
+     *
      * @return string with the name of case which is specified in the argument
      *         of the YANG <code>default</code> substatement of
      *         <code>choice</code> statement.