Home | History | Annotate | Download | only in connectivity

Lines Matching refs:FormPageInfo

49     public interface FormPageInfo {
128 public Fragment displayPage(FormPageInfo formPageInfo, String titleArgument,
137 switch (formPageInfo.getDisplayType()) {
139 return displayList(formPageInfo, titleArgument, descriptionArgument, extraChoices,
144 return displayTextInput(formPageInfo, titleArgument, descriptionArgument,
149 return displayPasswordInput(formPageInfo, titleArgument, descriptionArgument,
154 return displayLoading(formPageInfo, titleArgument, showProgress, forward);
175 private Fragment displayList(final FormPageInfo formPageInfo, String titleArgument,
181 getTitle(formPageInfo, titleArgument),
182 getDescription(formPageInfo, descriptionArgument),
183 formPageInfo.getChoices(mContext, extraChoices), lastPage == null ? null
205 private Fragment displayTextInput(FormPageInfo formPageInfo, String titleArgument,
210 getTitle(formPageInfo, titleArgument),
211 getDescription(formPageInfo, descriptionArgument),
212 formPageInfo.getInputType(), lastPage == null ? null : lastPage.getDataSummary());
230 private Fragment displayPasswordInput(FormPageInfo formPageInfo, String titleArgument,
235 getTitle(formPageInfo, titleArgument),
236 getDescription(formPageInfo, descriptionArgument),
255 private Fragment displayLoading(FormPageInfo formPageInfo, String argument,
258 getTitle(formPageInfo, argument), showProgress);
263 private String getTitle(FormPageInfo formPageInfo, String argument) {
264 return mContext.getString(formPageInfo.getTitleResourceId(), argument);
267 private String getDescription(FormPageInfo formPageInfo, String argument) {
268 int descriptionResourceId = formPageInfo.getDescriptionResourceId();