blob: b43f6496598346dcae3f87ce67d7db0653f1f4a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Copyright 2013 Jesse Morgan
*/
package com.p4square.grow.provider;
import com.p4square.grow.model.Question;
/**
* Indicates the ability to provide a Question Provider.
*
* @author Jesse Morgan <jesse@jesterpm.net>
*/
public interface ProvidesQuestions {
/**
* @return A Provider of Questions keyed by question id.
*/
Provider<String, Question> getQuestionProvider();
}
|