Searched refs:DebugGraphics (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphics.java34 * from Graphics. DebugGraphics objects are rarely created by hand. They
39 * NOTE: You must turn off double buffering to use DebugGraphics:
49 public class DebugGraphics extends Graphics { class in inherits:Graphics
75 public DebugGraphics() { method in class:DebugGraphics
88 public DebugGraphics(Graphics graphics, JComponent component) { method in class:DebugGraphics
99 public DebugGraphics(Graphics graphics) { method in class:DebugGraphics
105 * Overrides <code>Graphics.create</code> to return a DebugGraphics object.
108 DebugGraphics debugGraphics;
110 debugGraphics = new DebugGraphics();
119 * Overrides <code>Graphics.create</code> to return a DebugGraphics objec
[all...]
H A DJComponent.java216 * Set to true when DebugGraphics has been loaded.
721 * If <code>DebugGraphics</code> is turned on we create a new
722 * <code>DebugGraphics</code> object if necessary.
732 if ((DebugGraphics.debugComponentCount() != 0) &&
734 !(g instanceof DebugGraphics)) {
735 componentGraphics = new DebugGraphics(g,this);
1956 DebugGraphics graphics = new DebugGraphics(super.getGraphics(),
1970 * <li>DebugGraphics.LOG_OPTION - causes a text message to be printed.
1971 * <li>DebugGraphics
[all...]

Completed in 39 milliseconds