Java Generics, extended Generics and abstract classes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T10:38:57Z http://stackoverflow.com/feeds/question/961566 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/961566/java-generics-extended-generics-and-abstract-classes 0 Java Generics, extended Generics and abstract classes Dan 2009-06-07T09:16:39Z 2009-06-25T19:17:41Z <p>I've got the following classes set up:</p> <pre><code>public abstract class Process&lt;T,S&gt; { ... } public abstract class Resource&lt;T, S extends Process&lt;T, S&gt;&gt; { protected S processer; ... } public class ProcessImpl&lt;EventType1, EventType2&gt; { ... } public class ResourceImpl extends Resource&lt;EventType1, ProcessImpl&gt; { processer = new ProcesserImpl(); ... } </code></pre> <p>Everything is fine until I get to the <code>ResourceImpl</code>. I'm told that <code>ProcessImpl</code> is not a valid substitute for the bounded parameter <code>&lt;S extends Process&lt;T,S&gt;&gt;</code> of the type <code>Resource&lt;T,S&gt;</code>.</p> <p>I've tried various ways of getting around this and keep hitting a wall.</p> <p>Does anyone have any ideas?</p> http://stackoverflow.com/questions/961566/java-generics-extended-generics-and-abstract-classes/961591#961591 7 Answer by Shakedown for Java Generics, extended Generics and abstract classes Shakedown 2009-06-07T09:49:23Z 2009-06-07T10:06:08Z <pre><code>public class ProcessImpl&lt;EventType1, EventType2&gt; { ... } </code></pre> <p>Because ProcessImpl doesn't <strong>extend</strong> Process. Your ProcessImpl is not derived from Process, which is what you're declaring that parameter should be.</p> http://stackoverflow.com/questions/961566/java-generics-extended-generics-and-abstract-classes/961604#961604 0 Answer by Dan for Java Generics, extended Generics and abstract classes Dan 2009-06-07T09:57:03Z 2009-06-07T09:57:03Z <p>I can't see a way to edit the original version, or comment on given answers without a better rep.</p> <p>This code will exist on a web layer, the eventtype2 is defined on the persistence layer and accessible only in the core layer which exists below this level.</p> <p>So unfortunately without having a tight coupling, which I would like to avoid, I don't have access to EventType2.</p> http://stackoverflow.com/questions/961566/java-generics-extended-generics-and-abstract-classes/961714#961714 0 Answer by Toader Mihai Claudiu for Java Generics, extended Generics and abstract classes Toader Mihai Claudiu 2009-06-07T11:09:37Z 2009-06-07T11:09:37Z <p>You might want to do something like this:</p> <pre><code>public abstract class Process&lt;T, S&gt; { } public abstract class Resource&lt;T, S extends Process&lt;T, S&gt;&gt; { S processor; } public class ProcessImpl extends Process&lt;EventType1, ProcessImpl&gt; { } public class ResourceImpl extends Resource&lt;EventType1, ProcessImpl&gt; { } </code></pre> <p>If you constrain the <code>S</code> parameter of the <code>Resource</code> to be a processor you also need to properly declare it on the <code>ProcessImpl</code> class. I don't know what <code>EventType2</code> is but it should be implementing Process interface. I assumed you actually want to say <code>ProcessImpl</code>. </p> http://stackoverflow.com/questions/961566/java-generics-extended-generics-and-abstract-classes/961782#961782 0 Answer by chuck for Java Generics, extended Generics and abstract classes chuck 2009-06-07T12:08:28Z 2009-06-07T12:08:28Z <p>If you don't want your code to depend on some existing package, which contains the <code>Process</code>, you could also introduce some new interface package depending on nothing in the very bottom of the class hierarchy. (If you are able to change the constrains of the inheritance of course.)</p>