/**
* Return the description for an aspect
*/
public LayoutAspectDescription getAspect(String name) {
LayoutAspectDescription desc = null;
Iterator i = this.aspects.iterator();
while (desc == null && i.hasNext() ) {
LayoutAspectDescription current = (LayoutAspectDescription)i.next();
if ( name.equals(current.getName())) {
desc = current;
}
}
return desc;
}