PropertiesStringSourcepublic class PropertiesStringSource extends StringSourceBase implements StringSourceAn abstraction for getting a String, given an id string. |
Fields Summary |
---|
final Properties | mProperties | public static final String | STRINGS_NAME |
Constructors Summary |
---|
public PropertiesStringSource(Properties props, StringSource delegate)
super( delegate );
assert( props != null );
mProperties = props;
| public PropertiesStringSource(File propsFile, StringSource delegate)
this( propsFromFile( propsFile ), delegate );
|
|