001package jmri.jmrit.symbolicprog; 002 003/** 004 * Common access to the SymbolicProgBundle of properties. 005 * 006 * Putting this in a class allows it to be loaded only once. 007 * 008 * @author Bob Jacobsen Copyright 2010 009 * @since 2.9.4 010 */ 011public class SymbolicProgBundle { 012 013 static public String getMessage(String key) { 014 return Bundle.getMessage(key); 015 } 016 017 static public String getMessage(String key, Object... subs) { 018 return Bundle.getMessage(key, subs); 019 } 020}