/** {@inheritDoc} */
protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
throws UnmarshallingException {
ApplyType applayType = (ApplyType) parentXMLObject;
if (childXMLObject instanceof ExpressionType) {
ExpressionType expression = (ExpressionType) childXMLObject;
applayType.getExpressions().add(expression);
} else {
super.processChildElement(parentXMLObject, childXMLObject);
}
}