View Javadoc

1   package com.sharkysoft.printf;
2   
3   abstract class Formatter_DecimalInteger extends Formatter_Integer
4   {
5   
6   	Formatter_DecimalInteger(FormatSpecifier ipPfs)
7   	{
8   		super(ipPfs);
9   	}
10  
11  }
12