本文整理匯總了Java中javax.swing.text.AbstractDocument.replace方法的典型用法代碼示例。如果您正苦於以下問題:Java AbstractDocument.replace方法的具體用法?Java AbstractDocument.replace怎麽用?Java AbstractDocument.replace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.swing.text.AbstractDocument
的用法示例。
在下文中一共展示了AbstractDocument.replace方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: actionPerformed
import javax.swing.text.AbstractDocument; //導入方法依賴的package包/類
@Override
public void actionPerformed(ActionEvent evt) {
List<String> commands = history.getCommands();
if (isEditable() && readCommand && !commands.isEmpty()) {
AbstractDocument doc = (AbstractDocument) getDocument();
if (commandIndex < commands.size()) {
++commandIndex;
String command;
if (commandIndex == commands.size()) {
command = currentLine;
} else {
command = commands.get(commandIndex);
}
try {
doc.replace(editStart, doc.getLength() - editStart, command, null);
} catch (BadLocationException e) {
LOGGER.trace("BadLocationException", e);
}
setSelectionStart(doc.getLength());
}
}
}
示例2: init
import javax.swing.text.AbstractDocument; //導入方法依賴的package包/類
private void init() {
AbstractDocument ad = LineDocumentUtils.asRequired(document, AbstractDocument.class);
this.valid = true;
ad.setDocumentFilter(new DocFilter());
try {
// initialize the bypass:
ad.replace(0, 0, "", null);
} catch (BadLocationException ex) {
}
org.netbeans.lib.editor.util.swing.DocumentUtilities.addPriorityDocumentListener(document,
l = new DocL(), DocumentListenerPriority.CARET_UPDATE);
}