Context context )
throws
IOException, SAXException {
Expression expression = attributeDescriptor.getTextExpression();
if ( expression != null ) {
Object value = expression.evaluate( context );
if ( value != null ) {
String text = value.toString();
if ( text != null && text.length() > 0 ) {
expressAttribute(attributeDescriptor.getQualifiedName(), text);
}