//System.err.println("@matcher.group("+i+") = " + matcher.group(i));
String attributeName = matcher.group(1);
if(attributeName != null)
{
String attributeValue = removeQuotes(matcher.group(2));
StyleAttribute attribute = Style.descriptorFor(attributeName);
style.put(attribute, attributeValue);
}
}
}