当前位置: 首页>>代码示例>>Java>>正文


Java ListSelectionModel.SINGLE_SELECTION属性代码示例

本文整理汇总了Java中javax.swing.ListSelectionModel.SINGLE_SELECTION属性的典型用法代码示例。如果您正苦于以下问题:Java ListSelectionModel.SINGLE_SELECTION属性的具体用法?Java ListSelectionModel.SINGLE_SELECTION怎么用?Java ListSelectionModel.SINGLE_SELECTION使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在javax.swing.ListSelectionModel的用法示例。


在下文中一共展示了ListSelectionModel.SINGLE_SELECTION属性的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: isSelectionModeBroken

/** 
 * Check if selection of the nodes could break
 * the selection mode set in the ListSelectionModel.
 * @param nodes the nodes for selection
 * @return true if the selection mode is broken
 */
private boolean isSelectionModeBroken(Node[] nodes) {
    
    // if nodes are empty or single then everthing is ok
    // or if discontiguous selection then everthing ok
    if (nodes.length <= 1 || table.getSelectionModel().getSelectionMode() == 
            ListSelectionModel.MULTIPLE_INTERVAL_SELECTION) {
        return false;
    }

    // if many nodes
    
    // breaks single selection mode
    if (table.getSelectionModel().getSelectionMode() == 
        ListSelectionModel.SINGLE_SELECTION) {
        return true;
    }
    
    // check the contiguous selection mode

    // check selection's rows
    
    // all is ok
    return false;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:30,代码来源:TableView.java

示例2: showPopupMenuAt

/**
 * Show popup menu from actions provided by node at given index (if any).
 *
 * @param rowIndex
 * @param location
 */
void showPopupMenuAt(int rowIndex, Point location) {
    TreeListNode node = (TreeListNode) getModel().getElementAt(rowIndex);
    boolean popupForSelected = false;
    if (getSelectionMode() != ListSelectionModel.SINGLE_SELECTION) {
        popupForSelected = isPopupForSelected(node);
    }
    if (!popupForSelected) {
        setSelectedIndex(rowIndex);
    }
    Action[] actions = node.getPopupActions();

    if (null == actions || actions.length == 0) {
        return;
    }
    JPopupMenu popup = Utilities.actionsToPopup(actions, this);
    popup.show(this, location.x, location.y);
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:23,代码来源:TreeList.java

示例3: storeToXML

@Override
public Node storeToXML(Document doc) {
    Object value = getValue();
    int selectionMode = -1;
    Object[] values = getEnumerationValues();
    if (values[4].equals(value)) {
        selectionMode = ListSelectionModel.SINGLE_SELECTION;
    } else if (values[7].equals(value)) {
        selectionMode = ListSelectionModel.SINGLE_INTERVAL_SELECTION;
    } else if (values[10].equals(value)) {
        selectionMode = ListSelectionModel.MULTIPLE_INTERVAL_SELECTION;
    }
    org.w3c.dom.Element el = null;
    el = doc.createElement(XML_TABLE_SELECTION_MODEL);
    el.setAttribute(ATTR_SELECTION_MODE, Integer.toString(selectionMode));
    return el;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:17,代码来源:JTableSelectionModelEditor.java

示例4: run

public void run() {
    boolean multisel = (list.getSelectionMode() != ListSelectionModel.SINGLE_SELECTION);
    int i = (multisel ? list.getLeadSelectionIndex() : list.getSelectedIndex());

    if (i < 0) {
        return;
    }

    Point p = list.indexToLocation(i);

    if (p == null) {
        return;
    }

    createPopup(p.x, p.y, false);
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:16,代码来源:ListView.java

示例5: isSelectionModeBroken

/** 
 * Check if selection of the nodes could break
 * the selection mode set in the ListSelectionModel.
 * @param nodes the nodes for selection
 * @return true if the selection mode is broken
 */
private boolean isSelectionModeBroken(Node[] nodes) {
    
    // if nodes are empty or single then everthing is ok
    // or if discontiguous selection then everthing ok
    if (nodes.length <= 1 || outline.getSelectionModel().getSelectionMode() == 
            ListSelectionModel.MULTIPLE_INTERVAL_SELECTION) {
        return false;
    }

    // if many nodes
    
    // breaks single selection mode
    if (outline.getSelectionModel().getSelectionMode() == 
        ListSelectionModel.SINGLE_SELECTION) {
        return true;
    }
    
    // check the contiguous selection mode

    // check selection's rows
    
    // all is ok
    return false;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:30,代码来源:OutlineView.java

示例6: setSelectionInterval

public void setSelectionInterval(int index0, int index1) {
    clearSelection();
    if (selectionMode == ListSelectionModel.SINGLE_SELECTION) {
        modifySelectionInterval(index0, index1, true);
    } else {
        modifySelectionInterval(index1, index1, true);
    }
    fireValueChanged();
}
 
开发者ID:addertheblack,项目名称:myster,代码行数:9,代码来源:JMCList.java

示例7: addSelectionInterval

public void addSelectionInterval(int index0, int index1) {
    if (selectionMode == ListSelectionModel.SINGLE_SELECTION
            || selectionMode == ListSelectionModel.SINGLE_INTERVAL_SELECTION) {
        setSelectionInterval(index0, index1);
    } else {
        modifySelectionInterval(index0, index1, true);
    }
}
 
开发者ID:addertheblack,项目名称:myster,代码行数:8,代码来源:JMCList.java

示例8: readFromXML

@Override
public void readFromXML(Node element) throws IOException {
    org.w3c.dom.NamedNodeMap attributes = element.getAttributes();
    Object[] values = getEnumerationValues();
    Object value;
    Node node = attributes.getNamedItem(ATTR_SELECTION_MODE);
    int selectionMode = Integer.valueOf(node.getNodeValue()).intValue();
    switch (selectionMode) {
        case ListSelectionModel.SINGLE_SELECTION: value = values[4]; break;
        case ListSelectionModel.SINGLE_INTERVAL_SELECTION: value = values[7]; break;
        case ListSelectionModel.MULTIPLE_INTERVAL_SELECTION: value = values[10]; break;
        default: value = values[1]; break;
    }
    setValue(value);
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:15,代码来源:JTableSelectionModelEditor.java

示例9: saveSelection

protected void saveSelection() {
    int sel = getSelectionModel().getSelectionMode();
    selection = sel == ListSelectionModel.SINGLE_SELECTION ?
            getSelectedValue(mainColumn) : getSelectedValues(mainColumn).toArray();
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:5,代码来源:ProfilerTable.java

示例10: setSingleSelectionOnly

@Override
public void setSingleSelectionOnly(boolean b)
{
	int mode = b ? ListSelectionModel.SINGLE_SELECTION : ListSelectionModel.MULTIPLE_INTERVAL_SELECTION;
	results.getSelectionModel().setSelectionMode(mode);
}
 
开发者ID:equella,项目名称:Equella,代码行数:6,代码来源:SearchFinder.java

示例11: isSingleSelect

public boolean isSingleSelect() {
    return getSelectionModel().getSelectionMode() == ListSelectionModel.SINGLE_SELECTION;
}
 
开发者ID:addertheblack,项目名称:myster,代码行数:3,代码来源:JMCList.java


注:本文中的javax.swing.ListSelectionModel.SINGLE_SELECTION属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。