Interface MountPointChild
- All Known Implementing Classes:
AbstractMountPointChild
An unresolved child within a mount point. This is similar in functionality to
NormalizableAnydata
, but
rather than normalizing, the data is fed into a combination of an EffectiveModelContext and a
NormalizedNodeStreamWriter.-
Method Summary
Modifier and TypeMethodDescriptionnormalizeTo
(EffectiveModelContext schemaContext) Normalized this child to a particular EffectiveModelContext.void
writeTo
(NormalizedNodeStreamWriter writer, MountPointContext mountCtx) Stream this child into a writer, with the help of a SchemaContext.
-
Method Details
-
writeTo
Stream this child into a writer, with the help of a SchemaContext.- Parameters:
writer
- Writer to emit the child intomountCtx
- MountPointContext for normalization purposes- Throws:
IOException
- if an underlying error occursNullPointerException
- if any of the arguments is null
-
normalizeTo
Normalized this child to a particular EffectiveModelContext.- Parameters:
schemaContext
- SchemaContext for normalization purposes- Returns:
- A NormalizedNode representation of this child
- Throws:
IOException
- if an underlying error occursNullPointerException
- if any of the arguments is null
-