1 package com.sharkysoft.printf;
2
3 import java.math.BigInteger;
4
5 final class Formatter_d_Bi extends Formatter_d
6 {
7
8 Formatter_d_Bi(final FormatSpecifier ipPfs)
9 {
10 super(ipPfs);
11 }
12
13 void format(final PrintfState ipPs)
14 {
15 formatSignedBigInteger(ipPs);
16 }
17
18 Class[] argTypes() {
19 Class[] types = super.argTypes();
20 types[0] = BigInteger.class;
21 return types;
22 }
23
24 }
25