001package jmri.jmrit.whereused;
002
003import javax.swing.JTextArea;
004import jmri.NamedBean;
005import jmri.NamedBean.DisplayOptions;
006
007/**
008 * Find entry/exit references.
009 *
010 * @author Dave Sand Copyright (C) 2020
011 */
012
013public class EntryExitWhereUsed {
014
015    /**
016     * Populate a textarea with the where used content for the supplied bean.
017     * @param entryexit The entry/exit bean.
018     * @return a populated textarea.
019     */
020    static public JTextArea getWhereUsed(NamedBean entryexit) {
021        JTextArea textArea = new JTextArea();
022        String label = Bundle.getMessage("MakeLabel", Bundle.getMessage("BeanNameEntryExit"));  // NOI18N
023        textArea.append(Bundle.getMessage("ReferenceTitle", label, entryexit.getDisplayName(DisplayOptions.USERNAME_SYSTEMNAME)));  // NOI18N
024        textArea.append(Bundle.getMessage("ListenerCount", entryexit.getNumPropertyChangeListeners()));  // NOI18N
025
026        textArea.append(WhereUsedCollectors.checkLogixConditionals(entryexit));
027        textArea.append(WhereUsedCollectors.checkLogixNGConditionals(entryexit));
028        textArea.append(WhereUsedCollectors.checkEntryExit(entryexit));
029        return textArea;
030    }
031}