Package org.jdesktop.swingx

Examples of org.jdesktop.swingx.JXList


     */
    private void initComponents() {
        descriptionContainer = new JXTitledPanel();
        descriptionPane = new JXEditorPane();
        mainContainer = new JXTitledPanel();
        mainList = new JXList();
    }
View Full Code Here


        listModel.addElement(
                new LafItem(lafIcon, new SubstanceModerateLookAndFeel()));
        listModel.addElement(
                new LafItem(lafIcon, new SubstanceMistAquaLookAndFeel()));

        xlist = new JXList(listModel);
        xlist.setCellRenderer(new LafItemCellRenderer());
        xlist.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        xlist.setHighlighters(HighlighterFactory.createSimpleStriping(
                HighlighterFactory.BEIGE));
        xlist.setSelectedIndex(0);
View Full Code Here

TOP

Related Classes of org.jdesktop.swingx.JXList

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.