throw new PareseException("Not found necessary attribute." + attributeValue);
}
Attribute attributePre = element.attribute(ATTRIBUTE_PREPEND);
Attribute attributeEmpty = element.attribute(ATTRIBUTE_EMPTY);
List<Append> appends = result.getAppends();
Append append = new Append();
appends.add(append);
append.setEmptyAppend(attributeEmpty == null ? true : Boolean.parseBoolean(attributeEmpty.getStringValue()));
append.setPrepend(attributePre == null ? null : attributePre.getStringValue());
append.setProperty(attributeValue.getStringValue());
}