Java JFrame addToQue(JFrame frame)

Here you can find the source of addToQue(JFrame frame)

Description

add To Que

License

Open Source License

Declaration

synchronized private static void addToQue(JFrame frame) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.util.ArrayList;
import javax.swing.JFrame;

public class Main {
    private static ArrayList<JFrame> reaktivationQue = new ArrayList<>();

    synchronized private static void addToQue(JFrame frame) {
        reaktivationQue.add(frame);//from   w w w .ja v  a 2 s. com
    }
}

Related

  1. addEscapeExitListeners(final JFrame window)
  2. addEscapeListener(final JFrame frame)
  3. addJFrameReporter(JFrame to)
  4. addPanelToFrame(final JFrame frame, final JPanel panel, final String title)
  5. addProgressBar(final JFrame win)
  6. allPlatformGetFile(String dialogTitle, File locationIn, final String fileExtension, FileFilter nonMacFileFilter, boolean allowMultipleSelect, JFrame parentFrame)
  7. askSave(JFrame frame)
  8. attachAccelerator(Action action, JFrame frame)
  9. btnMnemonicAndToolTip(JFrame frame, JButton a, JButton b, JButton c, JButton e, JButton h, JButton i, JButton l, JButton m, JButton o, JButton p, JButton s, JButton t, JButton enter, JButton altEnter)