src/share/classes/com/sun/tools/javac/util/ForwardingDiagnosticFormatter.java

changeset 333
7c2d6da61646
parent 288
d402db1005ad
child 554
9d9f26857129
equal deleted inserted replaced
332:cf08b64e87da 333:7c2d6da61646
35 import com.sun.tools.javac.api.DiagnosticFormatter.PositionKind; 35 import com.sun.tools.javac.api.DiagnosticFormatter.PositionKind;
36 36
37 /** 37 /**
38 * A delegated diagnostic formatter delegates all formatting 38 * A delegated diagnostic formatter delegates all formatting
39 * actions to an underlying formatter (aka the delegated formatter). 39 * actions to an underlying formatter (aka the delegated formatter).
40 *
41 * <p><b>This is NOT part of any API supported by Sun Microsystems.
42 * If you write code that depends on this, you do so at your own risk.
43 * This code and its internal interfaces are subject to change or
44 * deletion without notice.</b>
40 */ 45 */
41 public class ForwardingDiagnosticFormatter<D extends Diagnostic<?>, F extends DiagnosticFormatter<D>> 46 public class ForwardingDiagnosticFormatter<D extends Diagnostic<?>, F extends DiagnosticFormatter<D>>
42 implements DiagnosticFormatter<D> { 47 implements DiagnosticFormatter<D> {
43 48
44 /** 49 /**

mercurial