本文整理了Java中javax.swing.JTextArea.moveCaretPosition()
方法的一些代码示例,展示了JTextArea.moveCaretPosition()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JTextArea.moveCaretPosition()
方法的具体详情如下:
包路径:javax.swing.JTextArea
类名称:JTextArea
方法名:moveCaretPosition
暂无
代码示例来源:origin: checkstyle/checkstyle
/**
* Set selection.
*/
public void select() {
pModel.findSelectionPositions();
editor.setSelectedTextColor(Color.blue);
editor.requestFocusInWindow();
editor.setCaretPosition(pModel.getSelectionStart());
editor.moveCaretPosition(pModel.getSelectionEnd());
}
代码示例来源:origin: stackoverflow.com
textArea.moveCaretPosition(pos);
代码示例来源:origin: pmd/pmd
@Override
public void run() {
try {
sourceCodeArea.getHighlighter().removeAllHighlights();
if (node == null) {
return;
}
int startOffset = sourceCodeArea.getLineStartOffset(node.getBeginLine() - 1)
+ node.getBeginColumn() - 1;
int end = sourceCodeArea.getLineStartOffset(node.getEndLine() - 1) + node.getEndColumn();
sourceCodeArea.getHighlighter().addHighlight(startOffset, end,
new DefaultHighlighter.DefaultHighlightPainter(HIGHLIGHT_COLOR));
sourceCodeArea.moveCaretPosition(startOffset);
} catch (BadLocationException exc) {
throw new IllegalStateException(exc.getMessage());
}
}
});
代码示例来源:origin: com.puppycrawl.tools/checkstyle
/**
* Set selection.
*/
public void select() {
pModel.findSelectionPositions();
editor.setSelectedTextColor(Color.blue);
editor.requestFocusInWindow();
editor.setCaretPosition(pModel.getSelectionStart());
editor.moveCaretPosition(pModel.getSelectionEnd());
}
代码示例来源:origin: net.sourceforge.pmd/pmd-core
@Override
public void run() {
try {
sourceCodeArea.getHighlighter().removeAllHighlights();
if (node == null) {
return;
}
int startOffset = sourceCodeArea.getLineStartOffset(node.getBeginLine() - 1)
+ node.getBeginColumn() - 1;
int end = sourceCodeArea.getLineStartOffset(node.getEndLine() - 1) + node.getEndColumn();
sourceCodeArea.getHighlighter().addHighlight(startOffset, end,
new DefaultHighlighter.DefaultHighlightPainter(HIGHLIGHT_COLOR));
sourceCodeArea.moveCaretPosition(startOffset);
} catch (BadLocationException exc) {
throw new IllegalStateException(exc.getMessage());
}
}
});
内容来源于网络,如有侵权,请联系作者删除!