Added support for manually-defined mapping (for example, enable mapping with third-party objects, which you cannot annotate).
Also added support for methods receiving a single object instead of a list.

the example now illustrate the 4 usage:

PojoTableStory.java
    @Given("the following annotated table: $table")
    public void givenExamplesAnnotatedPojo(List<MyAnnotatedPojo> pojos){}

    @Given("the following annotated single-element table: $table")
    public void givenExamplesAnnotatedPojo(MyAnnotatedPojo pojo){}

    @Given("the following non-annotated table: $table")
    public void givenExamplesNonAnnotatedPojo(List<MyNonAnnotatedPojo> pojos){}

    @Given("the following non-annotated single-element table: $table")
    public void givenExamplesAnnotatedPojo(MyNonAnnotatedPojo pojo){}
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