throw new UnsupportedOperationException(getClass().getName());
}
public Attribute getDefaultAttribute(QName qName)
{
Attribute attrStrategy = getProgramAttribute();
if (attrStrategy != null)
return attrStrategy;
// ioc/2252 - flow attributes are not captured by ContentProgram
attrStrategy = getContentProgramAttribute();
TypeFactory factory = TypeFactory.getFactory();
Attribute envStrategy = factory.getEnvironmentAttribute(qName);
if (envStrategy instanceof FlowAttribute
|| envStrategy != null && attrStrategy == null)
return envStrategy;
else if (attrStrategy != null)