Package org.pentaho.openformula.ui.util

Examples of org.pentaho.openformula.ui.util.FunctionCategoryCellRenderer


    setLayout(new GridBagLayout());
    setBorder(BorderFactory.createEmptyBorder(0, 0, 0, 5));

    categoryComboBox = new JComboBox();
    categoryComboBox.addActionListener(new CategorySelectionAction());
    categoryComboBox.setRenderer(new FunctionCategoryCellRenderer());

    formulaList = new JList();
    formulaList.setCellRenderer(new FunctionDescriptionCellRenderer());
    formulaList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    formulaList.addMouseListener(new FormulaListMouseHandler());
View Full Code Here

TOP

Related Classes of org.pentaho.openformula.ui.util.FunctionCategoryCellRenderer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.