1 package com.sharkysoft.printf; 2 3 class Formatter_u extends Formatter_DecimalInteger 4 { 5 6 Formatter_u(final FormatSpecifier ipPfs) 7 { 8 super(ipPfs); 9 } 10 11 void format(final PrintfState ipPs) 12 { 13 formatUnsignedInt(ipPs); 14 } 15 16 } 17