Searched defs:Painter (Results 1 - 3 of 3) sorted by relevance
/openjdk7/jdk/src/share/classes/com/sun/java/swing/ |
H A D | Painter.java | 30 * @deprecated Use {@link javax.swing.Painter} instead. 32 public interface Painter<T> extends javax.swing.Painter { interface in inherits:javax.swing.Painter
|
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | Painter.java | 30 * <p>A painting delegate. The Painter interface defines exactly one method, 36 * <p><code>Painter</code>s are simply encapsulations of Java2D code and make 37 * it fairly trivial to reuse existing <code>Painter</code>s or to combine 39 * such that if you can't find a <code>Painter</code> that does what you need, 40 * you can write one with minimal effort. Writing a <code>Painter</code> requires 43 * <p>A <code>Painter</code> may be created with a type parameter. This type will be 45 * <code>Painter</code> that only works with subclasses of {@link java.awt.Component}. 46 * In that case, when the <code>Painter</code> is declared, you may declare that 50 * Painter<Component> p = new Painter<Componen 63 public interface Painter<T> { interface [all...] |
/openjdk7/jdk/src/macosx/classes/com/apple/laf/ |
H A D | AquaUtils.java | 243 interface Painter { interface in class:AquaUtils 256 final Painter prePainter; 257 final Painter postPainter; 266 public ShadowBorder(final Painter prePainter, final Painter postPainter, final int offsetX, final int offsetY, final float distance, final float intensity, final int blur) { 325 public SlicedShadowBorder(final Painter prePainter, final Painter postPainter, final int offsetX, final int offsetY, final float distance, final float intensity, final int blur, final int templateWidth, final int templateHeight, final int leftCut, final int topCut, final int rightCut, final int bottomCut) {
|
Completed in 993 milliseconds