Qeustions about SortedSet and ListMultipleChoice (with and without Metagen)

2011-12-09 Thread Jablow, Eric R
In my project, for business reasons, we have classes with SortedSet members. The classes and their elements are all Serializable. I'm having trouble working with a SortedSet object; when I try creating a ListMultipleChoice object for it (and putting it into a FormComponentPanel>), I get all so

RE: ValidationForm.addPropertyValidators sometimes looks for child properties in parent's model

2011-11-21 Thread Jablow, Eric R
Igor>but you can create a testcase, reproducing the bare bits of code in a testcase just like you did in the email below. the advantage would be that i would have something i can play with which makes it much easier to find the problem. I will work on a quick start tonight, when I'm not at work.

Added issue for assertFeedback

2011-11-19 Thread Jablow, Eric R
I've just submitted issue WICKET-4246 for the problem I found where WicketTester.assertFeedback required the actual feedback messages to be the expected messages in their exact order. Since the ftlines validation project through the Hibernate validator project returns messages in an unspecified

RE: Metagen configuration issue

2011-11-18 Thread Jablow, Eric R
-Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Friday, November 18, 2011 4:04 PM To: users@wicket.apache.org Subject: Re: Metagen configuration issue sweet, thanks. i will add it to the readme -igor > > >        org.apache.maven.plugins >        maven

RE: Metagen configuration issue

2011-11-18 Thread Jablow, Eric R
-Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Friday, November 18, 2011 2:43 PM To: users@wicket.apache.org Subject: Re: Metagen configuration issue very strange. we are using the configuration on the github page and its working great here. try using the

RE: Metagen configuration issue

2011-11-18 Thread Jablow, Eric R
>From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Friday, November 18, 2011 2:21 PM To: users@wicket.apache.org Subject: Re: Metagen configuration issue try removing the configuration block of the maven-processor-plugin and change the location of the helper plugin to generated-sources/

Metagen configuration issue

2011-11-18 Thread Jablow, Eric R
I've cut and pasted the Metagen configuration listed in https://github.com/42Lines/metagen into my project pom, and these declarations are generating the metamodels twice: in target/generated-sources/annotations, and in target/metamodel. What must I do to cut out one of the metamodel locations?

RE: ValidationForm.addPropertyValidators sometimes looks for child properties in parent's model

2011-11-18 Thread Jablow, Eric R
Dear Igor, (me)>> I get a call with expression being "child", and target being the local test object.  Were expression "parent.child", this would succeed, as it would call getParent().getChild(). However, I'm not sure whether this is my bug or the wicket-validation-bean library's. (Igor)>this

RE: Debugging a NPE from a ModelPropertyResolver

2011-11-17 Thread Jablow, Eric R
No, we are using only the stock models, I think. In any case, the particular test class uses CompoundPropertyModel. From: Igor Vaynberg [igor.vaynb...@gmail.com] Sent: Thursday, November 17, 2011 7:24 PM To: users@wicket.apache.org Subject: Re: Debugging a

ValidationForm.addPropertyValidators sometimes looks for child properties in parent's model

2011-11-17 Thread Jablow, Eric R
I have some model classes with JSR 303 validation annotations, and I have some FormComponentPanels for each. Some of these will be nested. To test that the Wicket validation is correct, I'm creating a ValidationForm, which contains one of my panels, which contains another of my panels, and I am

Debugging a NPE from a ModelPropertyResolver

2011-11-17 Thread Jablow, Eric R
I am trying to use Igor's wicket-validation-bean project, and I've managed to make a mistake where I'm getting a NullPointerException from when ValidationForm attempts to add property validators. Unfortunately, I can't tell what property it's trying to attach validators for here, as the exceptio

RE: Configuration problem with net.ftlines.wicket-bean-validation

2011-11-16 Thread Jablow, Eric R
From: Martin Grigorov [mailto:mgrigo...@apache.org] >Hi, >Looking at the stacktrace I think you should add this line to Wicket's >resource bundle. Just add it to YourApplication.properties and it should be >fine. I'm a lot closer to fine, now. However, I think I've exposed a usability probl

RE: Configuration problem with net.ftlines.wicket-bean-validation

2011-11-16 Thread Jablow, Eric R
From: Martin Grigorov [mailto:mgrigo...@apache.org] >Hi, >Looking at the stacktrace I think you should add this line to Wicket's >resource bundle. Just add it to YourApplication.properties and it should be >fine. That must be it. The library project tries to get its validation messages via t

Configuration problem with net.ftlines.wicket-bean-validation

2011-11-16 Thread Jablow, Eric R
First, let me thank Igor Vaynberg for being so responsive updating the net.ftlines.wicket-bean-validation project. I still have one final problem configuring it. I have a test that checks that setting a field to a value that

RE: WicketStuff JSR-303 validation breaks in WicketTester

2011-11-15 Thread Jablow, Eric R
I took your advice and I am trying to use this project. I have some teething pains. >See https://github.com/42Lines/wicket-bean-validation >http://repo1.maven.org/maven2/net/ftlines/wicket-bean-validation/ > I removed the wicketstuff.org jsr303 repository and added the ftlines one. I also notic

WicketStuff JSR-303 validation breaks in WicketTester

2011-11-15 Thread Jablow, Eric R
I'm trying to use the wicketstuff.org JSR-303 validation project to use Hibernate Validator in my newish Wicket project. I have a FormComponentPanel with a model object set up for JSR-303 validation, but we are using vanilla Wicket Validators for it. To test the FormComponentPanel, I wrote a t