1 16 package org.joda.time.format; 17 18 import java.io.IOException ; 19 import java.io.Writer ; 20 import java.util.Locale ; 21 22 import org.joda.time.ReadablePeriod; 23 24 42 public interface PeriodPrinter { 43 44 51 int calculatePrintedLength(ReadablePeriod period, Locale locale); 52 53 62 int countFieldsToPrint(ReadablePeriod period, int stopAt, Locale locale); 63 64 72 void printTo(StringBuffer buf, ReadablePeriod period, Locale locale); 73 74 81 void printTo(Writer out, ReadablePeriod period, Locale locale) throws IOException ; 82 83 } 84 | Popular Tags |