new JTextArea(Document document) : JTextArea « javax.swing « Java by API






new JTextArea(Document document)

 
import java.awt.Container;

import javax.swing.BoxLayout;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.text.Document;

public class MainClass {
  public static void main(String args[]) {
    JFrame frame = new JFrame("Sharing Sample");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container content = frame.getContentPane();
    JTextArea textarea1 = new JTextArea();
    Document document = textarea1.getDocument();
    JTextArea textarea2 = new JTextArea(document);
    JTextArea textarea3 = new JTextArea(document);
    content.setLayout(new BoxLayout(content, BoxLayout.Y_AXIS));
    content.add(new JScrollPane(textarea1));
    content.add(new JScrollPane(textarea2));
    content.add(new JScrollPane(textarea3));
    frame.setSize(300, 400);
    frame.setVisible(true);
  }
}

           
         
  








Related examples in the same category

1.new JTextArea(String text)
2.new JTextArea(String text, int rows, int columns)
3.JTextArea: addCaretListener(CaretListener listener)
4.JTextArea: addUndoableEditListener(UndoableEditListener lis)
5.JTextArea: append(String str)
6.JTextArea: getActionMap()
7.JTextArea: getActions()
8.JTextArea: getCaretPosition()
9.JTextArea: getDocument()
10.JTextArea: getFont()
11.JTextArea: getHighlighter()
12.JTextArea: getKeymap()
13.JTextArea: getLineCount()
14.JTextArea: getLineEndOffset(int line)
15.JTextArea.getLineOfOffset(int offset)
16.JTextArea: getLineStartOffset(int line)
17.JTextArea: insert(String str, int pos)
18.JTextArea: isManagingFocus()
19.JTextArea: paste()
20.JTextArea: read(Reader in, Object desc)
21.JTextArea: replaceRange(String str, int start, int end)
22.JTextArea: setCaretColor(Color c)
23.JTextField: setHorizontalAlignment(int pos)
24.JTextArea: setLineWrap(boolean wrap)
25.JTextArea: setTabSize(int size)
26.JTextArea: setWrapStyleWord(boolean word)
27.JTextArea: write(Writer out)