return itemInfo.numAttributes;
}
@Override
protected int populateRow(LoaderItemInfo itemInfo, short remaining) {
int col = 0;
GlobalAttributeValueId gav_id = profile.getRandomGlobalAttributeValue();
assert(gav_id != null);
// IA_ID
this.row[col++] = this.count;
// IA_I_ID
this.row[col++] = itemInfo.itemId;
// IA_U_ID
this.row[col++] = itemInfo.sellerId;
// IA_GAV_ID
this.row[col++] = gav_id.encode();
// IA_GAG_ID
this.row[col++] = gav_id.getGlobalAttributeGroup().encode();
return (col);
}