Github user mbeckerle commented on a diff in the pull request:
https://github.com/apache/incubator-daffodil/pull/5#discussion_r149840662
--- Diff:
daffodil-core/src/main/scala/edu/illinois/ncsa/daffodil/dsom/ModelGroup.scala
---
@@ -56,15 +55,32 @@ sealed abstract class ModelGroupFactory private () {
* flatmap it to get a collection of model groups. Nil for non-model
groups, non-Nil for the model group
* object. There should be only one non-Nil.
*/
- def apply(child: Node, parent: SchemaComponent, position: Int) = {
- val childList: List[GroupBase] = child match {
- case <sequence>{ _* }</sequence> => List(new Sequence(child, parent,
position))
+ def apply(child: Node, parent: SchemaComponent, position: Int, isHidden:
Boolean): List[ModelGroup] = {
--- End diff --
scaladoc (probably for the object, not just for this method.)
---