Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. Font fontPaneText = new Font("Times New Roman", Font.PLAIN, 12);
  2. choiceFile = new JTabbedPane(SwingConstants.NORTH_EAST, SCROLL_TAB_LAYOUT);
  3. choiceFile.setFont(fontPaneText);
  4.  
  5. container.setLayout(new BorderLayout());
  6. container.add(choiceFile, BorderLayout.LINE_START);
  7. container.add(bar, BorderLayout.NORTH);
  8.  
  9. JTextArea area = new JTextArea(String.valueOf(res));
  10. choiceFile.addTab(String.valueOf(workFile.getName()), area);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement