new Comparator<Element>()
{
public int compare( final Element a,
final Element b )
{
final PresentationStyleDef x = (PresentationStyleDef) a;
final PresentationStyleDef y = (PresentationStyleDef) b;
return comp( x.getId().content(), y.getId().content() );
}
}
);
}