Im trying to create a Domain Class Constructor that inherits another class properties dynamically. But I cannot get it to work properly.

Heres an example:

class Example1 {

  String name;
  String location;
}

class Example2 extends Example1 {

  String status;

  public Example2 (Example1 orig){
    // Code here to set this.name and this.location  to name and location from orig
    // dynamically, so adding a field in Example1 does not require me to add that 
    // field here.
  }
}
link|improve this question

75% accept rate
You might consider posting your solution as an answer to this question, and then accepting it (to follow the Q/A style of Stack Overflow). – Rob Hruska Aug 26 '11 at 17:12
I tried, it says I have to wait 8 hrs :( – Gregor Aug 26 '11 at 17:45
Yeah, there's a time limit. Maybe come back tomorrow and do it :) – Rob Hruska Aug 26 '11 at 17:47
feedback

3 Answers

You're working too hard, just copy the properties:

class Example2 extends Example1 {

   String status

   Example2() {}

   Example2(Example1 orig) {
      this.properties = orig.properties
   }
}
link|improve this answer
feedback
up vote 1 down vote accepted

After enough troubleshooting and searching online I found a solution, here it is in case anyone is ever looking for something similar:

public Example2(Example1 orig){
   def d = new DefaultGrailsDomainClass(Example1.class)
   d.persistentProperties.each { val ->
       this[val.name] = orig[val.name]         
   }       
}

Include this:

import org.codehaus.groovy.grails.commons.DefaultGrailsDomainClass
link|improve this answer
feedback

I'm not entirely clear on what it is that you want to accomplish, but is there any reason that you can't just have an "Example1" field in the "Example2" class?

link|improve this answer
I did not want to duplicate data across multiple classes, sorta defeats the purpose of extending. I came up with a solution, it is posted above. – Gregor Aug 26 '11 at 15:59
or just make Example1 abstract (stick in src/groovy if Example1's props are all you need); extend Example2 from it and move on. – virtualeyes Aug 28 '11 at 1:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.