本文整理匯總了Java中javax.swing.JTextArea.setTabSize方法的典型用法代碼示例。如果您正苦於以下問題:Java JTextArea.setTabSize方法的具體用法?Java JTextArea.setTabSize怎麽用?Java JTextArea.setTabSize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.swing.JTextArea
的用法示例。
在下文中一共展示了JTextArea.setTabSize方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getInfoPane
import javax.swing.JTextArea; //導入方法依賴的package包/類
private JScrollPane getInfoPane() {
// Create a text pane
JTextArea infoPane = new JTextArea();
infoPane.setEditable(false);
infoPane.setBackground(Color.WHITE);
// Text font
Font font = new Font("Lucida Sans Typewriter", Font.PLAIN, 12);
infoPane.setFont(font);
infoPane.setTabSize(4);
// Get the message and the stack trace from the exception and put them
// in text pane.
String info = this.simulator.getModel()
.getExplorationStats()
.getReport();
infoPane.setText(info);
// Pane to create the scroll bars.
JScrollPane scrollPane = new JScrollPane();
scrollPane.setPreferredSize(new Dimension(700, 500));
scrollPane.setBorder(BorderFactory.createTitledBorder(null,
STATS_HEADER_TEXT,
TitledBorder.DEFAULT_JUSTIFICATION,
TitledBorder.DEFAULT_POSITION));
scrollPane.setViewportView(infoPane);
return scrollPane;
}
示例2: buildDetailsScroll
import javax.swing.JTextArea; //導入方法依賴的package包/類
private JScrollPane buildDetailsScroll() {
final JTextArea detailsArea = new JTextArea(errorLog, 10, 20);
detailsArea.setEditable(false);
detailsArea.setTabSize(2);
return new JScrollPane(detailsArea);
}