提交 f6240ca8 编写于 作者: R rupashka

7032376: A type parameter isn't seen by using an web browser

Reviewed-by: malenkov
上级 4e8dee8a
...@@ -45,14 +45,16 @@ import java.awt.Graphics2D; ...@@ -45,14 +45,16 @@ import java.awt.Graphics2D;
* <code>Painter</code> that only works with subclasses of {@link java.awt.Component}. * <code>Painter</code> that only works with subclasses of {@link java.awt.Component}.
* In that case, when the <code>Painter</code> is declared, you may declare that * In that case, when the <code>Painter</code> is declared, you may declare that
* it requires a <code>Component</code>, allowing the paint method to be type safe. Ex: * it requires a <code>Component</code>, allowing the paint method to be type safe. Ex:
* <pre><code> * <pre>
* Painter<Component> p = new Painter<Component>() { * {@code
* public void paint(Graphics2D g, Component c, int width, int height) { * Painter<Component> p = new Painter<Component>() {
* g.setColor(c.getBackground()); * public void paint(Graphics2D g, Component c, int width, int height) {
* //and so forth * g.setColor(c.getBackground());
* } * //and so forth
* } * }
* </code></pre></p> * }
* }
* </pre></p>
* *
* <p>This interface makes no guarantees of threadsafety.</p> * <p>This interface makes no guarantees of threadsafety.</p>
* *
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册