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