Mauro Talevi commented on Improvement JBEHAVE-922

What's the advantage of doing this over the annotations?

public class ThirdPartyClass{
    @Parameter(name = "scenarioColumn1")
    private Integer aInteger;
}

If you're accessing the ExampleTable directly then you can use the Parameters interface

Parameters parameters = examplesTable.getRowsAsParameters().get(0);
parameters.valueAs("scenarioColumn1", Integer.class);
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to