Java JFrame addJFrameReporter(JFrame to)

Here you can find the source of addJFrameReporter(JFrame to)

Description

add J Frame Reporter

License

Open Source License

Declaration

public static void addJFrameReporter(JFrame to) 

Method Source Code

//package com.java2s;
/*/*from  ww  w .  java  2  s. com*/
#
# Utils.java
#
# copyright (c) 2009-2010, Danny Arends
# last modified Dec, 2010
# first written Dec, 2010
#
#     This program is free software; you can redistribute it and/or
#     modify it under the terms of the GNU General Public License,
#     version 3, as published by the Free Software Foundation.
# 
#     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, version 3, for more details.
# 
#     A copy of the GNU General Public License, version 3, is available
#     at http://www.r-project.org/Licenses/GPL-3
#
*/

import javax.swing.JFrame;
import javax.swing.JTextArea;

public class Main {
    public static JTextArea guireporter = null;

    public static void addJFrameReporter(JFrame to) {
        guireporter = new JTextArea();
        to.add(guireporter);
    }
}

Related

  1. abrirJFrameCentralizado(JFrame dialog)
  2. activateWindowClosingButton(JFrame frame)
  3. addDisposeActionWithEscapeKey(final JFrame frame)
  4. addEscapeExitListeners(final JFrame window)
  5. addEscapeListener(final JFrame frame)
  6. addPanelToFrame(final JFrame frame, final JPanel panel, final String title)
  7. addProgressBar(final JFrame win)
  8. addToQue(JFrame frame)
  9. allPlatformGetFile(String dialogTitle, File locationIn, final String fileExtension, FileFilter nonMacFileFilter, boolean allowMultipleSelect, JFrame parentFrame)