Class CheckListForm<Item_T,Context_T,CustomOptionsBean_T>
- java.lang.Object
-
- jetbrains.buildServer.controllers.popupDialogs.checkLists.CheckListForm<Item_T,Context_T,CustomOptionsBean_T>
-
public class CheckListForm<Item_T,Context_T,CustomOptionsBean_T> extends Object
- Author:
- Maxim.Manuylov Date: 10/1/11
-
-
Constructor Summary
Constructors Constructor Description CheckListForm(javax.servlet.http.HttpServletRequest request, CheckListPopupDialogType<Item_T,Context_T,CustomOptionsBean_T> type, String contextId, Context_T context)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
apply(Set<String> checkedItemIds, javax.servlet.http.HttpServletRequest request)
void
dispose()
void
filterItems(String keyPhrase)
String
getContextId()
String
getCurrentStateInfoText()
String
getCustomOptionsJspPagePath()
String
getItemRendererJspPage()
List<CheckListItem<Item_T>>
getItems()
String
getKeyPhrase()
String
getNoWarningsText()
String
getTopHtmlNote()
CheckListPopupDialogType
getType()
String
getValidationProgressText()
List<Warning>
getWarnings()
boolean
isHasCurrentStateInfoSupport()
boolean
isHasCustomOptionsSupport()
boolean
isHasFilteringSupport()
boolean
isHasValidationSupport()
void
putCustomOptionsIfNeeded(Map<String,Object> model)
void
updateState(Set<String> checkedItemIds, javax.servlet.http.HttpServletRequest request)
-
-
-
Constructor Detail
-
CheckListForm
public CheckListForm(@NotNull javax.servlet.http.HttpServletRequest request, @NotNull CheckListPopupDialogType<Item_T,Context_T,CustomOptionsBean_T> type, @Nullable String contextId, @NotNull Context_T context)
-
-
Method Detail
-
getType
@NotNull public CheckListPopupDialogType getType()
-
getItemRendererJspPage
@NotNull public String getItemRendererJspPage()
-
getContextId
@Nullable public String getContextId()
-
getTopHtmlNote
@Nullable public String getTopHtmlNote()
-
isHasFilteringSupport
public boolean isHasFilteringSupport()
-
isHasCurrentStateInfoSupport
public boolean isHasCurrentStateInfoSupport()
-
isHasValidationSupport
public boolean isHasValidationSupport()
-
isHasCustomOptionsSupport
public boolean isHasCustomOptionsSupport()
-
getNoWarningsText
@Nullable public String getNoWarningsText()
-
getValidationProgressText
@NotNull public String getValidationProgressText()
-
getCustomOptionsJspPagePath
@NotNull public String getCustomOptionsJspPagePath()
-
getCurrentStateInfoText
@NotNull public String getCurrentStateInfoText()
-
getItems
@NotNull public List<CheckListItem<Item_T>> getItems()
-
getKeyPhrase
@NotNull public String getKeyPhrase()
-
filterItems
public void filterItems(@NotNull String keyPhrase)
-
updateState
public void updateState(@NotNull Set<String> checkedItemIds, @NotNull javax.servlet.http.HttpServletRequest request)
-
apply
public void apply(@NotNull Set<String> checkedItemIds, @NotNull javax.servlet.http.HttpServletRequest request)
-
dispose
public void dispose()
-
-