Package ca.uhn.fhir.util
Interface IModelVisitor
public interface IModelVisitor
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
acceptElement
(IBaseResource theResource, IBase theElement, List<String> thePathToElement, BaseRuntimeChildDefinition theChildDefinition, BaseRuntimeElementDefinition<?> theDefinition)
-
Method Details
-
acceptElement
void acceptElement(IBaseResource theResource, IBase theElement, List<String> thePathToElement, BaseRuntimeChildDefinition theChildDefinition, BaseRuntimeElementDefinition<?> theDefinition) - Parameters:
theResource
- The resource being visited (note that generally this will be the resource upon which visit was originally called, but in the case of descending into contained resources this will be the contained resource instead)theElement
- The elementtheChildDefinition
- May be null if this is a root elementtheDefinition
-
-