}
// At this point, URIImageIcons start with '/' or 'http:',
// whereas ContextImageIcons uri do not. This is how we will know which type of
// Icon to create in StyleSheetDocument. Wrap back up with the 'url()' string so that
// we will know this is not a TextIcon.
propertyNodeArray[i] = new PropertyNode(propertyName, _wrapWithURLString(uriString));
}
else if (propertyValue.startsWith("inhibit"))
{
propertyNodeArray[i] = new PropertyNode(propertyName, propertyValue);
}
else
{
String text = trimQuotes(propertyValue);
propertyNodeArray[i] = new PropertyNode(propertyName, text);
}
} // end if 'content'
else
propertyNodeArray[i] = new PropertyNode(propertyName, propertyValue);
i++;
}
// TODO - Add -tr-rule-ref capability for icons.
// I purposely do not include the -tr-rule-ref at this time.