Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am tempted to do such kind of code, using jGraphT

/*
  interface DirectedGraph<V,E> { ...}
  interface WeightedGraph<V,E> { ...}
*/

public class SteinerTreeCalc  {

    public SteinerTreeCalc( < ??? implements DirectedGraph<V,E>, WeightedGraph<V,E> > graph )  {
     ......
    }


}

I want to create a constructor that ask for an object implementing two interfaces.

Update :

In my goal, there are already chosen classes for Vertex and Edges (V and E), but thanks a lot to people who come up with :

public class SteinerTreeCalc <V, E, T extends DirectedGraph<V, E> & WeightedGraph<V, E>>  
{ 
   ....
}
share|improve this question
I assume you have a good reason for not naming the interface that is both a DirectedGraph and a WeightedGraph, so that you can get all the bits of the contract that the user of the SteinerTreeCalc is required to support in one place? – Donal Fellows Sep 16 '10 at 9:40
A good one ! JgraphT doesn't provide such interface that is both a DirectedGraph and a WeightedGraph, and the user might not want to use my custom interface/classes. I don't really understand why they didn't provide this interface. – jwinandy Sep 16 '10 at 10:24

5 Answers

up vote 17 down vote accepted

Yes, it's possible:

public class SteinerTreeCalc<T extends DirectedGraph<V,E> & WeightedGraph<V,E>> {
  public SteinerTreeCalc(T graph) {
    ......
  }
}
share|improve this answer
What's V and E? Shouldn't it be SteinerTreeCalc<V,E,T extends DirectedGraph<V,E> & WeightedGraph<V,E>> – bruno conde Sep 16 '10 at 9:02
2  
I assume it's some inner class, where V and E are known. It's absent also in original question. – amorfis Sep 16 '10 at 9:05
This makes the class generic though. – aioobe Sep 16 '10 at 9:05
Certainly, V stands for Vertice and E Edge. These seem Type Parameters... – bruno conde Sep 16 '10 at 9:08

Should work like this, but this is complexer generics logic, hope you can adapt:

public static interface DirectedGraph<V, E> {
}

public static interface WeightedGraph<V, E> {
}

public <V, E, T extends DirectedGraph<V, E> & WeightedGraph<V, E>> SteinerTreeCalc(T bothInterfaces) {
    // do it
}

These are the interfaces and the constructor like asked in your question.

share|improve this answer
+1: Very similar to what I was coding. However, wouldn't V and E reside on the class itself and not on the constructor? I suppose it depends on the author's goals. – Adam Paynter Sep 16 '10 at 9:05

This could be what you want:
http://stackoverflow.com/questions/15496/hidden-features-of-java/42686#42686

share|improve this answer
Yes it is. I will take a deeper look to hidden features ;) – jwinandy Sep 16 '10 at 9:35

you can use extends instead of implements in above code

share|improve this answer

If V and E are concrete classes rather than type parameters, then you could create a new interface as follows:

public interface DirectedWeightedGraph extends 
    DirectedGraph<V,E>, WeightedGraph<V,E> {
}

then

public class SteinerTreeCalc  {

    public SteinerTreeCalc(DirectedWeightedGraph graph)  {
       ...
    }
}

The problem is that the actual argument must implement the DirectedWeightedGraph interface. A type that just implements DirectedGraph<V,E> and WeightedGraph<V,E> is not sufficient.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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