當前位置: 首頁>>代碼示例>>Java>>正文


Java JComboBox.removeItemAt方法代碼示例

本文整理匯總了Java中javax.swing.JComboBox.removeItemAt方法的典型用法代碼示例。如果您正苦於以下問題:Java JComboBox.removeItemAt方法的具體用法?Java JComboBox.removeItemAt怎麽用?Java JComboBox.removeItemAt使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javax.swing.JComboBox的用法示例。


在下文中一共展示了JComboBox.removeItemAt方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: setFilterResultItem

import javax.swing.JComboBox; //導入方法依賴的package包/類
/** Adds or removes an item for {@link Filter#RESULT} to the filter chooser. */
private void setFilterResultItem(boolean hasResults) {
    JComboBox<Filter> chooser = getFilterChooser();
    if (hasResults != (chooser.getItemCount() == Filter.values().length)) {
        this.filterListening = false;
        boolean resultSelected = chooser.getSelectedIndex() == Filter.RESULT.ordinal();
        if (hasResults) {
            chooser.addItem(Filter.RESULT);
        } else {
            chooser.removeItemAt(Filter.RESULT.ordinal());
        }
        if (resultSelected) {
            chooser.setSelectedIndex(Filter.NONE.ordinal());
        }
        getJGraph().setFilter(Filter.NONE);
        this.filterListening = true;
    }
}
 
開發者ID:meteoorkip,項目名稱:JavaGraph,代碼行數:19,代碼來源:LTSDisplay.java

示例2: addQueryHistory

import javax.swing.JComboBox; //導入方法依賴的package包/類
/**
 * Add the query to the history
 */
private void addQueryHistory(String queryString) {
    JComboBox<String> query = getQueryField();
    query.removeItem(queryString);
    query.insertItemAt(queryString, 0);
    query.setSelectedIndex(0);
    while (query.getItemCount() > MAX_HISTORY) {
        query.removeItemAt(MAX_HISTORY);
    }

    // store the history
    StringBuilder sb = new StringBuilder();
    for (int i = 0; i < query.getItemCount(); i++) {
        if (i > 0) {
            sb.append("\n");
        }
        sb.append(query.getItemAt(i));
    }
    PREFS.put("queryHistory", sb.toString());
}
 
開發者ID:meteoorkip,項目名稱:JavaGraph,代碼行數:23,代碼來源:PrologDisplay.java

示例3: LimpiarCombo

import javax.swing.JComboBox; //導入方法依賴的package包/類
public void LimpiarCombo(JComboBox combo) // COMPLETO 
{
    int filas = combo.getItemCount(); // cuenta numero de filas q tiene la tabla 
    for(int i=0; i<filas; i++)
    {
        combo.removeItemAt(0);// valor fijo de 0
    }
}
 
開發者ID:JuanJoseFJ,項目名稱:ProyectoPacientes,代碼行數:9,代碼來源:LLenarCombo.java


注:本文中的javax.swing.JComboBox.removeItemAt方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。