當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。