* @return a bit-significant integer containing flags IS_INLINE and/or IS_FORMATTED
*/
protected int classifyTag(int nameCode) {
if (inlineTagSet == null) {
NamePool pool = getNamePool();
inlineTagSet = new IntHashSet(50);
formattedTagSet = new IntHashSet(10);
for (int i=0; i<inlineTags.length; i++) {
int nc = pool.allocate("", NamespaceConstant.XHTML, inlineTags[i]);
inlineTagSet.add(nc);
}
for (int i=0; i<formattedTags.length; i++) {
int nc = pool.allocate("", NamespaceConstant.XHTML, formattedTags[i]);
formattedTagSet.add(nc);
}
}
int r = 0;
int key = nameCode & NamePool.FP_MASK;