本文整理匯總了Java中com.intellij.xdebugger.impl.frame.WatchInplaceEditor類的典型用法代碼示例。如果您正苦於以下問題:Java WatchInplaceEditor類的具體用法?Java WatchInplaceEditor怎麽用?Java WatchInplaceEditor使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
WatchInplaceEditor類屬於com.intellij.xdebugger.impl.frame包,在下文中一共展示了WatchInplaceEditor類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: editWatch
import com.intellij.xdebugger.impl.frame.WatchInplaceEditor; //導入依賴的package包/類
public void editWatch(@Nullable WatchNodeImpl node) {
WatchNodeImpl messageNode;
int index = node != null ? myChildren.indexOf(node) : -1;
if (index == -1) {
int selectedIndex = myChildren.indexOf(ArrayUtil.getFirstElement(myTree.getSelectedNodes(WatchNodeImpl.class, null)));
int targetIndex = selectedIndex == - 1 ? myChildren.size() : selectedIndex + 1;
messageNode = new WatchNodeImpl(myTree, this, XExpressionImpl.EMPTY_EXPRESSION, null);
myChildren.add(targetIndex, messageNode);
fireNodeInserted(targetIndex);
getTree().setSelectionRows(ArrayUtil.EMPTY_INT_ARRAY);
}
else {
messageNode = node;
}
new WatchInplaceEditor(this, myWatchesView, messageNode, node).show();
}
示例2: editWatch
import com.intellij.xdebugger.impl.frame.WatchInplaceEditor; //導入依賴的package包/類
public void editWatch(@Nullable WatchNode node) {
WatchNode messageNode = WatchMessageNode.createMessageNode(myTree, this, XExpressionImpl.EMPTY_EXPRESSION);
int index = node != null ? myChildren.indexOf(node) : -1;
if (index == -1) {
myChildren.add(messageNode);
fireNodeInserted(myChildren.size() - 1);
}
else {
myChildren.set(index, messageNode);
fireNodeStructureChanged(messageNode);
}
XDebugSession session = XDebugView.getSession(myTree);
new WatchInplaceEditor(this, session, myWatchesView, messageNode, "watch", node).show();
}
示例3: editWatch
import com.intellij.xdebugger.impl.frame.WatchInplaceEditor; //導入依賴的package包/類
public void editWatch(@Nullable WatchNode node) {
WatchNode messageNode = WatchMessageNode.createMessageNode(myTree, this, "");
int index = node != null ? myChildren.indexOf(node) : -1;
if (index == -1) {
myChildren.add(messageNode);
fireNodeInserted(myChildren.size() - 1);
}
else {
myChildren.set(index, messageNode);
fireNodeStructureChanged(messageNode);
}
WatchInplaceEditor editor = new WatchInplaceEditor(this, messageNode, "watch", node);
editor.show();
}