// -------------------------------------------------------------------------
public static class Processor implements DeclarationSetProcessor<TabPanelHeaderSubPanel>, ArProperties {
@Override
public void process(TabPanelHeaderSubPanel target, DeclarationSet rs) {
Property p;
p = stroke; if (rs.contains(p)) target.setStroke(rs.getValue(p, Paint.class));
p = fill; if (rs.contains(p)) target.setFill(rs.getValue(p, Paint.class));
}