001package jmri.profile;
002
003/**
004 * JMRI local copy of the NetBeans Platform
005 * org.netbeans.spi.project.AuxiliaryProperties.
006 *
007 * @author Randall Wood
008 */
009public interface AuxiliaryProperties {
010
011    String get(String key, boolean shared);
012
013    Iterable<String> listKeys(boolean shared);
014
015    void put(String key, String value, boolean shared);
016}