Example usage for java.awt Frame getName

List of usage examples for java.awt Frame getName

Introduction

In this page you can find the example usage for java.awt Frame getName.

Prototype

public String getName() 

Source Link

Document

Gets the name of the component.

Usage

From source file:MainClass.java

public static void main(String[] args) {
    JDialog d1 = new JDialog((JFrame) null, "Dialog 1");
    d1.setName("Dialog 1");

    JDialog d2 = new JDialog((Window) null, "Dialog 2");
    d2.setName("Dialog 2");

    Frame f = new Frame();
    f.setName("Frame 1");

    Window w1 = new Window(f);
    w1.setName("Window 1");

    Window w2 = new Window(null);
    w2.setName("Window 2");

    System.out.println("FRAME WINDOWS");
    Frame[] frames = Frame.getFrames();
    for (Frame frame : frames)
        System.out.println(frame.getName() + ": " + frame.getClass());

}

From source file:Main.java

public static Frame getFrame(String frameName) {
    Frame[] frames = Frame.getFrames();
    for (Frame frame : frames) {
        if (frame.getName().equals(frameName))
            return frame;
    }//from  ww w.  j  av a  2 s .co m
    return null;
}