Github user mbeckerle commented on a diff in the pull request:
https://github.com/apache/incubator-daffodil/pull/5#discussion_r150691098
--- Diff:
daffodil-core/src/main/scala/edu/illinois/ncsa/daffodil/dsom/Term.scala ---
@@ -48,13 +46,17 @@ import
edu.illinois.ncsa.daffodil.schema.annotation.props.gen.NilKind
/////////////////////////////////////////////////////////////////
// A term is content of a group
-abstract class Term(xmlArg: Node, parentArg: SchemaComponent, val
position: Int)
- extends AnnotatedSchemaComponent(xmlArg, parentArg)
+trait Term
+ extends AnnotatedSchemaComponent
+ with ResolvesProperties
--- End diff --
yes.
---