Java JComponent Container getRootContainer(Component c)

Here you can find the source of getRootContainer(Component c)

Description

get Root Container

License

Open Source License

Declaration

public static Container getRootContainer(Component c) 

Method Source Code

//package com.java2s;
/*//w ww  . jav  a2s  .  co m
 * DataViewerUtilities.java  2/6/13 1:04 PM
 *
 * Copyright (C) 2012-2013 Nick Ma
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 3
 * of the License, or any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

import java.awt.*;

import javax.swing.*;

public class Main {
    public static Container getRootContainer(Component c) {
        if (c != null) {
            Container parent = c.getParent();
            while ((parent != null) && !(parent instanceof JPopupMenu) && !(parent instanceof JInternalFrame)
                    && !(parent instanceof Window) && (parent.getParent() != null)) {
                parent = parent.getParent();
            }
            return parent;
        }
        return null;
    }
}

Related

  1. getParent(JComponent parent, final int... path)
  2. getParentPanel(JComponent jc)
  3. getRoot(Component comp)
  4. getRoot(JComponent pchildComponent)
  5. getRootContainer(Component c)
  6. getRootContainer(Component c)
  7. getRootContainer(Component c)
  8. getRootPane(Component cmp)
  9. getRootPane(final Component component)