/* */
/* 213 */ List attProps = new FinalArrayList();
/* 214 */ List uriProps = new FinalArrayList();
/* 215 */ for (ClassBeanInfoImpl bi = this; bi != null; bi = bi.superClazz) {
/* 216 */ for (int i = bi.properties.length - 1; i >= 0; i--) {
/* 217 */ Property p = bi.properties[i];
/* 218 */ if ((p instanceof AttributeProperty))
/* 219 */ attProps.add((AttributeProperty)p);
/* 220 */ if (p.hasSerializeURIAction())
/* 221 */ uriProps.add(p);
/* */ }
/* */ }
/* 224 */ if (grammar.c14nSupport) {
/* 225 */ Collections.sort(attProps);