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 void
clearItems()
Clears the containerM[]
getItems()
boolean
isCleared()
-
-
-
Method Detail
-
getItems
M[] getItems()
- Returns:
- - Retrieves data from the container
-
clearItems
void clearItems()
Clears the container
-
isCleared
boolean isCleared()
- Returns:
- -
true
if the container items were cleared.
-
-