blob: 5d9976e18ca78c4e3e1c5acd0c6e79e46806c23d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Copyright 2014 Jesse Morgan
*/
package com.p4square.grow.provider;
/**
* Indicates the ability to provide a String provider.
*
* Strings are typically configuration settings stored as a String.
*
* @author Jesse Morgan <jesse@jesterpm.net>
*/
public interface ProvidesStrings {
/**
* @return A Provider of Questions keyed by question id.
*/
Provider<String, String> getStringProvider();
}
|