Package org.testng.internal
Interface IContainer<M>
-
- All Known Implementing Classes:
TestMethodContainer
public interface IContainer<M>Represents the capabilities of a simple container to hold data
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclearItems()Clears the containerM[]getItems()booleanisCleared()
-
-
-
Method Detail
-
getItems
M[] getItems()
- Returns:
- - Retrieves data from the container
-
clearItems
void clearItems()
Clears the container
-
isCleared
boolean isCleared()
- Returns:
- -
trueif the container items were cleared.
-
-