Home | History | Annotate | Download | only in util

Lines Matching refs:Formatter

33  * specifier of {@link java.util.Formatter}.  This interface allows basic
41 * import java.util.Formatter;
57 * public void formatTo(Formatter fmt, int f, int width, int precision) {
94 * <p> When used in conjunction with the {@link java.util.Formatter}, the above
98 * Formatter fmt = new Formatter();
122 * Formats the object using the provided {@link Formatter formatter}.
124 * @param formatter
125 * The {@link Formatter formatter}. Implementing classes may call
126 * {@link Formatter#out() formatter.out()} or {@link
127 * Formatter#locale() formatter.locale()} to obtain the {@link
129 * <tt>formatter</tt> respectively.
160 * href="../util/Formatter.html#detail">Details</a> section of the
161 * formatter class specification.
163 void formatTo(Formatter formatter, int flags, int width, int precision);