View Javadoc

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