Class CompositeWarning<T>
- java.lang.Object
-
- jetbrains.buildServer.controllers.popupDialogs.checkLists.CompositeWarning<T>
-
- All Implemented Interfaces:
Warning
- Direct Known Subclasses:
BuildTypeCanNotBeBuiltWarning
,PoolOutOfControlWarning
,ProjectCanNotBeBuiltWarning
public abstract class CompositeWarning<T> extends Object implements Warning
- Author:
- Maxim.Manuylov Date: 3/8/12
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
CompositeWarning()
protected
CompositeWarning(Comparator<? super T> comparator)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
add(T object)
abstract String
getControlId()
int
getCount()
T
getFirstObject()
abstract String
getObjectRendererPage()
SortedSet<T>
getObjects()
String
getRendererPage()
abstract String
getSeveralObjectsPopupText()
abstract String
getSeveralObjectsWarningText()
Use "#{popup}" in text to replace it with objects popup.abstract String
getSingleObjectWarningText()
Use "#{object}" in text to replace it with object link.boolean
isValid()
-
-
-
Constructor Detail
-
CompositeWarning
protected CompositeWarning()
-
CompositeWarning
protected CompositeWarning(@NotNull Comparator<? super T> comparator)
-
-
Method Detail
-
add
public void add(@NotNull T object)
-
getCount
public int getCount()
-
isValid
public boolean isValid()
-
getFirstObject
@NotNull public T getFirstObject()
-
getControlId
@NotNull public abstract String getControlId()
-
getObjectRendererPage
@NotNull public abstract String getObjectRendererPage()
-
getSingleObjectWarningText
@NotNull public abstract String getSingleObjectWarningText()
Use "#{object}" in text to replace it with object link.
-
getSeveralObjectsWarningText
@NotNull public abstract String getSeveralObjectsWarningText()
Use "#{popup}" in text to replace it with objects popup.
-
getSeveralObjectsPopupText
@NotNull public abstract String getSeveralObjectsPopupText()
-
getRendererPage
@NotNull public String getRendererPage()
- Specified by:
getRendererPage
in interfaceWarning
-
-