Searched defs:Frame (Results 1 - 3 of 3) sorted by relevance
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | Frame.java | 44 * A <code>Frame</code> is a top-level window with a title and a border. 62 * A frame may have its native decorations (i.e. <code>Frame</code> 67 * In a multi-screen environment, you can create a <code>Frame</code> 68 * on a different screen device by constructing the <code>Frame</code> 69 * with {@link #Frame(GraphicsConfiguration)} or 70 * {@link #Frame(String title, GraphicsConfiguration)}. The 90 * calling <code>getLocationOnScreen</code> on a <code>Frame</code> 96 * location of the <code>Frame</code> at (10, 10) relative 100 * <code>Frame</code> location would be set at (10, 10) relative to the 106 * Frame 135 public class Frame extends Window implements MenuContainer { class in inherits:Window,MenuContainer 384 public Frame() throws HeadlessException { method in class:Frame 403 public Frame(GraphicsConfiguration gc) { method in class:Frame 420 public Frame(String title) throws HeadlessException { method in class:Frame 445 public Frame(String title, GraphicsConfiguration gc) { method in class:Frame [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/ |
H A D | Frame.java | 67 final class Frame { class 1277 boolean merge(final ClassWriter cw, final Frame frame, final int edge) {
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ |
H A D | Frame.java | 48 -- this is an actual port of the VM's Frame code to Java. </P> 54 public abstract class Frame implements Cloneable { class in inherits:Cloneable 63 public Frame() { method in class:Frame 204 public abstract Frame sender(RegisterMap map, CodeBlob nm); 207 public Frame sender(RegisterMap map) { return sender(map, null); } 210 public Frame realSender(RegisterMap map) { 212 Frame result = sender(map); 655 private Frame fr; 660 InterpreterFrameClosure(Frame fr, int maxLocals, int maxStack, AddressVisitor f) { 715 private Frame f [all...] |
Completed in 1709 milliseconds