Package javax.swing

Examples of javax.swing.JTextArea


    }
    for (String s : varNames) {
        msg += "\n\t\t<param name=\"" + s + "\" value=\"some_value\">";
    }
    msg += "\n\t</applet>\n</html>";
    JOptionPane.showMessageDialog(this.getFrame(), new JTextArea(msg),
            messageTitle, JOptionPane.PLAIN_MESSAGE);
}//GEN-LAST:event_htmlButtonActionPerformed
View Full Code Here


    }
    for (String s : varNames) {
        msg += "\n\t" + s + "=\"some_value\" ";
    }
    //msg += "\n\t</applet>\n</html>";
    JOptionPane.showMessageDialog(this.getFrame(), new JTextArea(msg),
            messageTitle, JOptionPane.PLAIN_MESSAGE);
}//GEN-LAST:event_consoleButtonActionPerformed
View Full Code Here

        else
            return null;
    }

    private void setupSourcePanel() {
        source = new JTextArea();/* {
            private boolean antialias = Globals.prefs.getBoolean("antialias");

            public void paint(Graphics g) {
                Graphics2D g2 = (Graphics2D) g;
                if (antialias)
View Full Code Here

                                c.compileURL(f.toURL());
                            }
                        }
                        String warningString = c.getWarnings();
                        if (warningString.length() > 0){
                            JTextArea textarea = new JTextArea(warningString, 10, 40);
                            JScrollPane scrollpane = new JScrollPane(textarea);
                            JOptionPane.showMessageDialog(
                                null,
                                scrollpane,
                                "Compile Warnings",
View Full Code Here

    getContentPane().setLayout(new BorderLayout());
    contentPanel.setLayout(new BorderLayout(0, 0));
    contentPanel.setBorder(new EmptyBorder(5, 5, 5, 5));
    getContentPane().add(contentPanel, BorderLayout.CENTER);
    {
      JTextArea systemInfo = new JTextArea("System info:\n");
      systemInfo.setEditable(false);
      systemInfo.setEnabled(true);
     
      systemInfo.append("-OS:\t" + SystemInfo.OS_NAME.getValue() + "\n");
      systemInfo.append("-Architecture:\t" + SystemInfo.OS_ARCHITECTURE.getValue() + "\n");
      systemInfo.append("-Version:\t" + SystemInfo.OS_VERSION.getValue() + "\n");
      systemInfo.append("-Java version:\t" + SystemInfo.JAVA_VERSION.getValue() + "\n");
     
      JLabel lblThisIsA = new JLabel("Microlog Bluetooth Server GUI by Johan Karlsson & Jarle Hansen");

     
      contentPanel.add(systemInfo, BorderLayout.NORTH);
View Full Code Here

        .addFocusListener(tffl);

    yearF = new JTextField();
    yearF.addActionListener(saveButtonListener);
    yearF.addFocusListener(tffl);
    commentF = new JTextArea();
    CommentFieldListener cfl = new CommentFieldListener();
    commentF.addKeyListener(cfl);
    commentF.addFocusListener(tffl);
    JScrollPane commentSP = new JScrollPane(commentF);
    // To prevent ugly resizing while typing.
View Full Code Here

    genre.setEnabled(false);
    comment = new JTextField();
    comment.addActionListener(saveButtonListener);
    comment.setEnabled(false);

    tracks = new JTextArea();
    tracks.setEnabled(false);
    JScrollPane tracksPane = new JScrollPane(tracks);

    ActionListener queryButtonListener = new QueryButtonListener();
    search = new JTextField(LangageManager.getProperty("freedbpanel.enter"));
View Full Code Here

    }
  }

  public synchronized void messageReceived(String message) {
    if (message != null && message.length() > 0) {
      JTextArea textArea = getTextArea();
      textArea.append(message);
      textArea.append(newline);

      textArea.setCaretPosition(textArea.getDocument().getLength());
    }
  }
View Full Code Here

      }
      {
        logScrollPane = new JScrollPane();
        splitPane.setRightComponent(logScrollPane);
        {
          textArea = new JTextArea();
          logScrollPane.setViewportView(textArea);
        }
      }
    }
  }
View Full Code Here

    menubar.setAccelerator(KeyEvent.VK_A);
   
    menubar.addMenuItem("Stats...", new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        JOptionPane.showMessageDialog(TreeViewFrame.this,
            new JTextArea(getDataModel().toString()));
      }
    });
    menubar.setAccelerator(KeyEvent.VK_S);
  }
View Full Code Here

TOP

Related Classes of javax.swing.JTextArea

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.