1 package com.sharkysoft.printf; 2 3 final class PrintfState 4 { 5 6 StringBuffer mpOutput; 7 8 Object[] mapArgs; 9 10 int mnArgIndex; 11 12 } 13