Java Generics, extended Generics and abstract classes - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T10:38:57Zhttp://stackoverflow.com/feeds/question/961566http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/961566/java-generics-extended-generics-and-abstract-classes0Java Generics, extended Generics and abstract classesDan2009-06-07T09:16:39Z2009-06-25T19:17:41Z
<p>I've got the following classes set up:</p>
<pre><code>public abstract class Process<T,S> {
...
}
public abstract class Resource<T, S extends Process<T, S>> {
protected S processer;
...
}
public class ProcessImpl<EventType1, EventType2> {
...
}
public class ResourceImpl extends Resource<EventType1, ProcessImpl> {
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><S extends Process<T,S>></code> of the type <code>Resource<T,S></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#9615917Answer by Shakedown for Java Generics, extended Generics and abstract classesShakedown2009-06-07T09:49:23Z2009-06-07T10:06:08Z<pre><code>public class ProcessImpl<EventType1, EventType2> {
...
}
</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#9616040Answer by Dan for Java Generics, extended Generics and abstract classesDan2009-06-07T09:57:03Z2009-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#9617140Answer by Toader Mihai Claudiu for Java Generics, extended Generics and abstract classesToader Mihai Claudiu2009-06-07T11:09:37Z2009-06-07T11:09:37Z<p>You might want to do something like this:</p>
<pre><code>public abstract class Process<T, S> {
}
public abstract class Resource<T, S extends Process<T, S>> {
S processor;
}
public class ProcessImpl extends Process<EventType1, ProcessImpl> {
}
public class ResourceImpl extends Resource<EventType1, ProcessImpl> {
}
</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#9617820Answer by chuck for Java Generics, extended Generics and abstract classeschuck2009-06-07T12:08:28Z2009-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>