return pds;
}
private IPropertyPageDescriptor getPD(Entity tagEntity, String attrName) {
IPropertyPageDescriptor pd = null;
Entity attrEntity = TaglibDomainMetaDataQueryHelper.getEntity(tagEntity, attrName);
if (attrEntity != null){
List pds = MetaDataEnabledProcessingFactory.getInstance().getAttributeValueRuntimeTypeFeatureProcessors(
IPropertyPageDescriptor.class, getStructuredDocumentContext(), attrEntity);
if (pds != null && !pds.isEmpty())
pd = (IPropertyPageDescriptor)pds.get(0);