本文整理汇总了Java中com.intellij.util.containers.ContainerUtil.swapElements方法的典型用法代码示例。如果您正苦于以下问题:Java ContainerUtil.swapElements方法的具体用法?Java ContainerUtil.swapElements怎么用?Java ContainerUtil.swapElements使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.util.containers.ContainerUtil
的用法示例。
在下文中一共展示了ContainerUtil.swapElements方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: moveUp
import com.intellij.util.containers.ContainerUtil; //导入方法依赖的package包/类
@Override
public void moveUp(@NotNull String url) {
int index = indexOf(url);
if (index <= 0) return;
dropCaches();
ContainerUtil.swapElements(myList, index - 1, index);
}
示例2: moveDown
import com.intellij.util.containers.ContainerUtil; //导入方法依赖的package包/类
@Override
public void moveDown(@NotNull String url) {
int index = indexOf(url);
if (index < 0 || index + 1 >= myList.size()) return;
dropCaches();
ContainerUtil.swapElements(myList, index, index + 1);
}
示例3: moveUp
import com.intellij.util.containers.ContainerUtil; //导入方法依赖的package包/类
public void moveUp(WatchNode node) {
int index = getIndex(node);
if (index > 0) {
ContainerUtil.swapElements(myChildren, index, index - 1);
}
fireNodeStructureChanged();
getTree().setSelectionRow(index - 1);
}
示例4: moveDown
import com.intellij.util.containers.ContainerUtil; //导入方法依赖的package包/类
public void moveDown(WatchNode node) {
int index = getIndex(node);
if (index < myChildren.size() - 1) {
ContainerUtil.swapElements(myChildren, index, index + 1);
}
fireNodeStructureChanged();
getTree().setSelectionRow(index + 1);
}
示例5: exchangeRows
import com.intellij.util.containers.ContainerUtil; //导入方法依赖的package包/类
public void exchangeRows(int index1, int index2) {
ContainerUtil.swapElements(myTypeParameterInfos, index1, index2);
ContainerUtil.swapElements(myTypeCodeFragments, index1, index2);
fireTableDataChanged();
//fireTableRowsUpdated(Math.min(index1, index2), Math.max(index1, index2));
}