Package org.testng.internal
Interface IParameterInfo
-
- All Known Implementing Classes:
ParameterInfo
public interface IParameterInfoRepresents the ability to retrieve the parameters associated with a factory method.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static java.lang.ObjectembeddedInstance(java.lang.Object original)intgetIndex()java.lang.ObjectgetInstance()java.lang.Object[]getParameters()
-
-
-
Method Detail
-
getInstance
java.lang.Object getInstance()
- Returns:
- - The actual instance associated with a factory method
-
getIndex
int getIndex()
- Returns:
- - The actual index of instance associated with a factory method
-
getParameters
java.lang.Object[] getParameters()
- Returns:
- - The parameters associated with the factory method as an array.
-
embeddedInstance
static java.lang.Object embeddedInstance(java.lang.Object original)
-
-