本文整理汇总了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();
}