ComplexFeatureConstants.SIMPLE_CONTENT, 1, 1, true, (Object) null);
return new AttributeImpl(convertedValue, descriptor, null);
}
public boolean isComplexType(final StepList attrXPath, final AttributeDescriptor featureType) {
PropertyName attExp = FF.property(attrXPath.toString());
Object type = attExp.evaluate(featureType);
if (type == null) {
type = attExp.evaluate(featureType);
throw new IllegalArgumentException("path not found: " + attrXPath);
}
AttributeDescriptor node = (AttributeDescriptor) type;
return node.getType() instanceof ComplexType;