Re: Code Generator with Wicket...

2018-09-19 Thread craliaga
Nice work :) -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Code Generator with Wicket...

2017-10-19 Thread Vit Rozkovec
Awesome, PR welcomed. Cheers. On 10/18/2017 11:29 AM, badgers wrote: Yes! I will check it. When I did my adaptions I will do a pull request. Thx in advance -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

Re: Code Generator with Wicket...

2017-10-18 Thread badgers
Yes! I will check it. When I did my adaptions I will do a pull request. Thx in advance -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail:

Re: Code Generator with Wicket...

2017-10-18 Thread Vit Rozkovec
As a quickfix I've commited missing package with behaviors. Regarding Hibernate, instead of that, there could be this dependency http://search.maven.org/#artifactdetails%7Cjavax.persistence%7Cpersistence-api%7C1.0.2%7Cjar If you'd like to have it even without that, I guess that would mean

Re: Code Generator with Wicket...

2017-10-16 Thread badgers
I understand it. I develop Maven based Velocity Generator using Reflection. We are on the same knowledge path ;-) * cz.newforms.wicket.behaviors is missing...difficult to test it...is it possible that you sent me fragments or a jar file to test it? * I would prefer not to use hibernate...it

Re: Code Generator with Wicket...

2017-10-16 Thread Vit Rozkovec
Hi, happy you like it. Feel free to do whatever you want with it, at the moment I use it regularly to generate admin interfaces that I then customize according to usecase. There are some areas that could receive more attention, generator could get more clever in guessing correct

Re: Code Generator with Wicket...

2017-10-13 Thread badgers
Hi Vit, I am an pure Java Developer since many years ;-) ... I like it to use annotations. I know that many frameworks use DSL and whatever today...but Java Classes to configure is an Java developer friendly was. What is your goal with the project?` best regards badgers -- Sent from:

Re: Code Generator with Wicket...

2017-10-12 Thread badgers
Hi Vit, I checked it out yesterday. The core intention of the framework is clear. I give you feedback. best regards badgers -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe,

Re: Code Generator with Wicket...

2017-10-10 Thread Vit Rozkovec
Hi badgers, have a look here: https://github.com/vrozkovec/wicket-code-generator Please note that it is a quickly created project that was part of the set of my internal utilities and some imports in the generated classes will be missing. Generated files contain also unnecessary imports, I

Re: Code Generator with Wicket...

2017-10-09 Thread Илья Нарыжный
Jack, We did the following approach: https://github.com/OrienteerBAP/Orienteer /tree/master/orienteer-core/src/main/java/org/orienteer/core/component/meta Shortly: there is a metapanel, which can "substitute" corresponding panel according to display mode (view or edit), property type (boolean,

Re: Code Generator with Wicket...

2017-10-09 Thread badgers
Hi Martin, Thanks. I saw Apache Isis - I will check how high is the learning curve? Thx -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail:

Re: Code Generator with Wicket...

2017-10-09 Thread badgers
Hi Vit, would be nice and I'm intertested. Maybe I can participate ;-) best regards badgers -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail:

Re: Code Generator with Wicket...

2017-10-09 Thread Martijn Dashorst
Perhaps https://isis.apache.org is doing what you are looking for? Martijn On Mon, Oct 9, 2017 at 9:57 AM, badgers wrote: > Hi, > > in my project I have a lot of easy master data gui's...nothing complex. > mostly with one foerign key in its data store. > > I want

Re: Code Generator with Wicket...

2017-10-09 Thread Vit Rozkovec
I've developed one simple generator that consumes java POJOs, inspects them via reflection and produces CRUD wicket components from the template. If you are interested, I can publish it on the github as a separate project. Vit On 10/09/2017 09:57 AM, badgers wrote: Hi, in my project I have a

Code Generator with Wicket...

2017-10-09 Thread badgers
Hi, in my project I have a lot of easy master data gui's...nothing complex. mostly with one foerign key in its data store. I want to develop a code generator which is based on metamodel. Goal is to generate based on a DSL? Beans with Annotations? or something similar wicket gui's, service's that