Hello,
on the line 347, where it checks to see if a component
has a "style" attribute, I see:
Object id = IdKit.getAttribute(c.getIdentifier(),"style");
where it should be:
Object id = IdKit.getAttribute(c,"style");
or
Object id = IdKit.get(c.getIdentifier(),"style");