View Javadoc

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